/* Notification Drawer Styles */
.notification-drawer {
    position: absolute;
    top: 100%;
    right: 0;
    width: 310px;
    max-height: calc(100vh - 60px);
    background: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1050;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: none;
    padding: 2px;
}

.notification-drawer.open {
    right: 0;
}

.drawer-content {
    width: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: #FFFFFF;
}

.my-reports-btn {
    margin-top: 5px;
    display: block;
    width: 100%;
}

/* Notification List Styles */
.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-list li {
    border: none;
    border-bottom: 2px solid #ddd !important;
    padding: 20px 25px;
    position: relative;
    background: #fff;
    color: #000;
    transition: background-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.notification-list li:hover {
    background-color: #f8f9fa;
}

.notification-list li.unread {
    background-color: #fff;
    color: #000;
}

.notification-list .close {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-list .close:hover {
    color: #666;
}

.notification-list strong {
    color: #333;
    font-weight: 600;
}

.notification-list small {
    color: #666;
    font-size: 12px;
}

.notification-list .btn {
    margin-top: 8px;
    margin-right: 5px;
}

.notification-list a {
    color: #007bff;
    text-decoration: none;
}

.notification-list a:hover {
    text-decoration: underline;
}

.notification-list li:last-child {
    border-bottom: none !important;
}

.notification-list .close {
    color: #333 !important;
    opacity: 1 !important;
}