/* Basic Feedback Box Styles */
.sfp-feedback-box {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0d0d0d;
    color: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    font-family: 'Poppins', sans-serif;
    z-index: 99999;
    max-width: 300px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
}
.sfp-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.sfp-btn {
    background: #1a1a1a;
    border: 1px solid #555;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.sfp-btn:hover {
    background: #b64e11;
    border-color: #b64e11;
}
.sfp-thankyou {
    margin-top: 14px;
    font-size: 13px;
    color: #c0c0c0;
}
