body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f8fafd;
}

.roadbook-card {
    background: #fff;
    box-shadow: 0 4px 24px rgba(33, 102, 172, 0.10), 0 1.5px 6px rgba(33,102,172,0.03);
    border-radius: 18px;
    padding: 32px 28px 24px 28px;
    margin: 32px auto 24px auto;
    max-width: 430px;
    width: 96%;
}

.roadbook-card h2 {
    margin-top: 0;
    font-weight: 700;
    color: #2166ac;
    font-size: 1.6em;
}

.roadbook-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0a1930;
    font-size: 1em;
}

.roadbook-input, .roadbook-select {
    width: 100%;
    border: 1.5px solid #e0e7ef;
    border-radius: 12px;
    font-size: 1.07em;
    padding: 10px 13px;
    margin-bottom: 16px;
    background: #f6faff;
    outline: none;
    transition: border .25s;
}

.roadbook-input:focus, .roadbook-select:focus {
    border-color: #2166ac;
    background: #fff;
}

.roadbook-button {
    background: #2166ac;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    font-weight: 700;
    font-size: 1.13em;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(33,102,172,0.10);
    transition: background .2s;
}
.roadbook-button:hover {
    background: #1c488b;
}

.roadbook-summary {
    background: #f6faff;
    border-radius: 12px;
    box-shadow: 0 1.5px 8px rgba(33,102,172,0.07);
    padding: 24px 18px;
    margin: 24px auto 0 auto;
    max-width: 650px;
    width: 98%;
}

.roadbook-summary h3 {
    color: #2166ac;
    margin-top: 0;
    font-size: 1.27em;
    font-weight: 600;
}

.roadbook-table {
    width: 100%;
    margin-top: 10px;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.roadbook-table th, .roadbook-table td {
    background: #fff;
    padding: 10px 9px;
    border-radius: 8px;
    text-align: left;
    font-size: 1.07em;
}
.roadbook-table th {
    color: #2166ac;
    font-weight: 700;
    font-size: 1.12em;
    border-bottom: 2px solid #e0e7ef;
}

@media (max-width: 600px) {
    .roadbook-card, .roadbook-summary {
        max-width: 99vw;
        padding: 14px 5vw 15px 5vw;
    }
    .roadbook-table th, .roadbook-table td {
        font-size: 1em;
        padding: 8px 5px;
    }
}
