﻿.access-denied-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f4f7f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.content-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: fadeIn 0.5s ease-out;
}

.icon-wrapper {
    color: #e63946; /* Колір попередження */
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

h1 {
    color: #1d3557; /* Глибокий синій */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    color: #457b9d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-primary {
    background: #1d3557;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

    .btn-primary:hover {
        background: #457b9d;
        transform: translateY(-2px);
    }

.btn-secondary {
    background: transparent;
    border: 2px solid #a8dadc;
    color: #457b9d;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-secondary:hover {
        background: #f1faee;
        border-color: #457b9d;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
