* {
    box-sizing: border-box;
}

html,
body,
#root {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
}

#root {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
}

input,
textarea,
select {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #1e293b;
    color: white;
}

textarea {
    min-height: 6em;
    max-height: 20em;
    resize: vertical;
}

button {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

h1 {
    font-size: 56px;
    margin: 32px 0 10px;
}

h3 {
    margin-top: 20px;
}

.progress {
    width: 100%;
    height: 10px;
    background: #334155;
    border-radius: 999px;
    margin: 1em auto 20px;
}

.progress-fill {
    height: 100%;
    background: #2563eb;
    border-radius: 999px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #334155;
    padding: 10px;
    text-align: left;
}

th {
    background: #1e293b;
}

@media (max-width: 768px) {
    #root {
        max-width: none;
        width: 100%;
        padding: 36px 16px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    input,
    textarea,
    select {
        max-width: 100%;
        font-size: 16px;
    }

    button {
        width: 100%;
        max-width: 12em;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    input[type="date"] {
    width: 250px;
    max-width: 100%;
    display: block;
    margin: 8px auto 16px;
}
}