.logout-container {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

    .logout-container h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .logout-container p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 1.5rem;
    }

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem; /* Khoảng cách giữa các nút */
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: bold;
    flex: 1; /* Đảm bảo các nút co giãn đều nhau */
    text-align: center;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background: #0056b3;
    }

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
}

    .btn-secondary:hover {
        background: #5a6268;
    }

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    .logout-container {
        padding: 1.5rem;
        width: 90%; /* Chiếm gần hết màn hình */
    }

        .logout-container h1 {
            font-size: 1.5rem;
        }

        .logout-container p {
            font-size: 0.9rem;
        }

    .buttons {
        flex-direction: column; /* Chuyển các nút thành dạng cột */
    }

    .btn {
        margin-bottom: 0.5rem; /* Khoảng cách giữa các nút */
    }

        .btn:last-child {
            margin-bottom: 0; /* Loại bỏ khoảng cách ở nút cuối */
        }
}

.logged-out-page {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

    .logged-out-page h1 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 1rem;
        position: relative;
    }

        .logged-out-page h1 small {
            font-size: 0.9rem;
            color: #777;
            display: block;
            margin-top: 0.5rem;
        }

    .logged-out-page div {
        font-size: 1rem;
        color: #555;
        margin-top: 1rem;
    }

    .logged-out-page a.PostLogoutRedirectUri {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .logged-out-page a.PostLogoutRedirectUri:hover {
            color: #0056b3;
            text-decoration: underline;
        }

iframe.signout {
    display: none; /* Ẩn iframe nhưng vẫn hoạt động */
}

/* Responsive */
@media (max-width: 768px) {
    .logged-out-page {
        padding: 1.5rem;
        width: 90%;
    }

        .logged-out-page h1 {
            font-size: 1.5rem;
        }

            .logged-out-page h1 small {
                font-size: 0.8rem;
            }

        .logged-out-page div {
            font-size: 0.9rem;
        }
}