.modal-backdrop {
    z-index: 1040 !important; /* Lower than modal (1050), but above header */
}

.modal {
    z-index: 1055 !important; /* Ensure modal is above everything */
}

/* Initially, keep the header visible */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1050;
    background: white;
    transition: top 0.3s ease-in-out;
}

/* Modal Body */
.modal-body {
    max-height: 500px;
    overflow-y: auto;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
}

/* Notification Item */
.notification-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    transition: background 0.3s ease-in-out;
}

/* Profile Icon */
.profile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #e9ecef;
}

/* Message Content */
.message-content {
    flex: 1;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75); /* Semi-black */
}

.message-text {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.75); /* Semi-black */
}


/* Hover Effect */
.notification-item:hover {
    background: #e3f2fd;
}

/* View Button */
.view-btn {
    padding: 4px 10px;
    font-size: 14px;
    transition: 0.3s;
}

    .view-btn:hover {
        background: #0d6efd;
        color: white;
    }

/* Badge Style for Notification Count */
.badge {
    font-size: 12px;
    padding: 5px 8px;
}
.note-editor .note-editable {
    background-color: #fff; /* Set background color to white */
}
/* Ensures the footer sticks at the bottom */
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.rockme {
    flex: 1;
    margin-top:20px;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    color: #333;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}