body {
    font-family: Arial, sans-serif;
    padding: 15px;
    font-size: 20px;
}

label {
    display: block;
    margin-bottom: 20px;
    font-size: 22px;
}

input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    font-size: 20px;
    margin-top: 5px;
}

button {
    padding: 15px 20px;
    font-size: 20px;
    margin-bottom: 25px;
    cursor: pointer;
    width: 100%;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    font-size: 22px;
    min-width: 500px;
}

caption {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 24px;
    text-align: left;
}

th, td {
    padding: 20px;
    border: 1px solid #000;
    word-wrap: break-word;
    text-align: left;
}

@media screen and (max-width: 768px) {
    th, td {
        font-size: 20px;
        padding: 16px;
    }
    input, label, button {
        font-size: 18px;
        padding: 12px;
    }
}