/* Notification styles */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(5px);
    border-left: 4px solid #2196F3;
}

.notification-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.notification-icon {
    color: #2196F3;
    font-size: 20px;
    margin-right: 12px;
}

.notification-content p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 0 0 0 10px;
    align-self: flex-start;
    transition: color 0.2s;
}

.notification-close:hover {
    color: white;
}

.notification-show {
    transform: translateY(0);
    opacity: 1;
}

.notification-hiding {
    transform: translateY(-10px);
    opacity: 0;
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    .custom-notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}