
/* reset */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6cf65;
    color: #222;
}

#wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: rgb(248, 247, 233);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0px;
	margin-top: 0px;
    color: #333;
	white-space: pre-wrap;
}


input[type="button"],
button {
    background: #134191;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

input[type="button"]:hover,
button:hover {
    background: #3c69b4;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th {
    background: #134191;
    color: white;
    padding: 10px;
    font-weight: normal;
    text-align: left;
    border-bottom: 2px solid #134191;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* stripes */
tr:nth-child(even) {
    background: #fdf6d9;
}

tr:nth-child(odd) {
    background: #f9ecc0;
}

input[type="radio"] {
    margin-right: 6px;
}

#resultDiv {
    margin-top: 20px;
    padding: 15px;
    background: #f9ecc0;
    border-left: 4px solid #134191;
    border-radius: 4px;
    font-size: 1.1rem;
}
