﻿
.notification-container {
    max-width: 450px;
    width: 90%;
    margin: 20px;
}

.notification-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.notification-icon {
    font-size: 40px;
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 20px;
}

.notification-title {
    color: #2D3436;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.notification-description {
    color: #636E72;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
}

.notification-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.notification-accept-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(45deg, #4CAF50, #45B649);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .notification-accept-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    }

.notification-reject-btn {
    background: transparent;
    border: none;
    color: #95A5A6;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}

    .notification-reject-btn:hover {
        color: #7F8C8D;
    }

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-card {
    animation: slideUp 0.3s ease-out;
}
