.rbd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 10px 20px;
}
.rbd-header-left, .rbd-header-right {
    display: flex;
    align-items: center;
}
.rbd-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.rbd-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
.rbd-username {
    cursor: pointer;
    font-weight: bold;
    position: relative;
}
.rbd-username:hover::after {
    content: "Click to edit profile";
    position: absolute;
    top: 120%;
    left: 0;
    background: #444;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Modal Styles */
.rbd-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.rbd-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 400px;
    border-radius: 8px;
    position: relative;
}
.rbd-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
#rbd-user-edit-form label {
    display: block;
    margin-top: 10px;
}
#rbd-user-edit-form input {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
}
#rbd-user-edit-form button {
    margin-top: 15px;
    margin-right: 10px;
    padding: 8px 12px;
    cursor: pointer;
}



/* Toast container */
#rbd-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 300px;
}

/* Toast message styling */
.rbd-toast {
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    position: relative;
}

/* Active toast (visible) */
.rbd-toast.show {
    opacity: 1;
    visibility: visible;
}

/* Close button styling */
.rbd-toast .rbd-toast-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
