/* Custom Notification Styles */
.notification-custom {
    width: 320px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-custom .notification-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
    padding: 0.75rem 1.25rem;
}

.notification-custom .notification-header h5 {
    font-weight: 600;
    color: #333;
}

.notification-custom #notificationContainer {
    max-height: 350px;
    overflow-y: auto;
}

.notification-custom .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.notification-custom .dropdown-item:last-child {
    border-bottom: none;
}

.notification-custom .dropdown-item:hover {
    background-color: #f1f3f5;
}

.notification-custom .dropdown-item.is-read {
    opacity: 0.7;
    background-color: #f8f9fa;
}

.notification-custom .notification-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.notification-custom .notification-content {
    flex-grow: 1;
}

.notification-custom .notification-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.notification-custom .notification-time {
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
}

.notification-custom .notification-footer {
    background-color: #f8f9fa;
    padding: 0.5rem;
    align-items: center;
}

.notification-custom .notification-footer .btn {
    font-size: 0.8rem;
    font-weight: 500;
}

.white-content .notification-custom {
    background-color: #ffffff;
    /* 흰색 배경 */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
}

.white-content .notification-custom .notification-header,
.white-content .notification-custom .notification-footer {
    background-color: #f0f5ff;
    /* 밝은 파란색 배경 */
    border-color: #d6e4ff;
}

.white-content .notification-custom .notification-header h5 {
    color: #0056b3;
    /* 진한 파란색 텍스트 */
}

.white-content .notification-custom .dropdown-item {
    border-color: #e9ecef;
}

.white-content .notification-custom .dropdown-item:hover {
    background-color: #e9f2ff;
    /* 호버 시 밝은 파란색 */
}

.white-content .notification-custom .dropdown-item.is-read {
    background-color: #f8f9fa;
    /* 읽은 항목 배경 */
}

.white-content .notification-custom .notification-content p {
    color: #343a40;
    /* 어두운 텍스트 색상 */
}

.white-content .notification-custom .notification-time {
    color: #868e96;
    /* 회색 텍스트 */
}