/* Стили для страницы уведомлений */
.notifications-page {
    padding: 20px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.black{
    color: #000;
}

.page-header {
    text-align: center;
    margin-bottom: 20px;
}

.page-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.notification-header .user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.notification-content {
    margin-bottom: 10px;
}

.notification-content blockquote {
    margin: 10px 0;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

    .back-btn, .submit-btn {
        background-color: #3b82f6;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 9999px;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.3s ease;
    }

    .back-btn i, .submit-btn i {
        margin-right: 5px;
    }

    .back-btn {
        background-color: #d1d5db;
        color: #374151;
    }

    .back-btn:hover {
        background-color: #9ca3af;
    }

    .head {
        align-items: center;
        display: flex;
    }
    .pair {

    }

@media (max-width: 768px) {
    .notifications-page{
        width: 90%;
    }

}
