﻿*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #ffffff;
}

.eula-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    min-height : 575px;
}

.eula-header {
    text-align: center;
    margin-bottom: 16px;
}

    .eula-header img {
        max-width: 260px;
        height: auto;
    }

.eula-main {    
    flex : 1;
    align-items: center;
}

    .eula-main  .eula-title {
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        margin: 0 0 16px;
    }

.eula-content {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    height : 80%;
}

.eula-text {
    width: 100%;
    height: 100%;
    resize: none;
    padding: 4px;
    border: 1px solid #ced4da;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #212529;
    background-color: #ffffff;
    cursor: default;
}

    .eula-text:focus {
        outline: 3px solid #0056b3;
        outline-offset: 2px;
    }

.eula-actions {
    display: flex;
    gap: 120px;
    justify-content: center;
    margin-bottom: 24px;
}

.eula-btn {
    width: 80px;
    padding: 4px 6px;
    font-size: 0.875rem;
    font-weight: 400;
    border: 1px solid #ced4da;
    border-radius: 2px;
    cursor: pointer;
    background-color: #e9e9e9;
    color: #212529;
}

    .eula-btn:hover {
        background-color: #d3d3d3;
    }

    .eula-btn:focus-visible {
        outline: 3px solid #0056b3;
        outline-offset: 2px;
    }

.eula-btn--decline,
.eula-btn--accept {
    background-color: #e9e9e9;
    border-color: #ced4da;
    color: #212529;
}

    .eula-btn--decline:hover,
    .eula-btn--accept:hover {
        background-color: #d3d3d3;
    }

.eula-footer {
    text-align: center;
    color: gray;
    margin-top: 16px;
}

    .eula-footer img {
        max-width: 180px;
        height: auto;
    }

    .eula-footer hr {
        margin: 5px 0;
        border: 0;
        border-top: 1px solid #dee2e6;
    }

    .eula-footer p {
        margin: 4px 0 0;
        font-size: 0.875rem;
    }
