#feedback-toggle-btn {
    background-color: #003366;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
}

#feedback-toggle-btn:hover {
    background-color: #002244;
    cursor: pointer;
}

.feedback-float {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 9999;
    transition: top 0.3s ease;
}

body.navbar-expanded #feedback-float {
    top: 220px;
}

body.navbar-expanded #feedback-form {
    top: 300px; /* adjust based on spacing needs */
}

/* Shift feedback when profile dropdown is open */
body.profile-dropdown-open #feedback-float {
    top: 320px; /* adjust as needed */
}

body.profile-dropdown-open #feedback-form {
    top: 400px; /* adjust as needed */
}

@media (max-width: 991.98px) {
    body.profile-dropdown-open #feedback-float {
        top: 320px;
    }

    body.profile-dropdown-open #feedback-form {
        top: 400px;
    }
}

