body {
    background-color: darkkhaki;
    color: brown;
    font-family: "Roboto Slab", serif;
    text-align: center;
    margin: 0;
    padding: 0;
}


h1, h2 {
    color: brown;
    margin-bottom: 15px;
}


img {
    width: 500px;
    display: block;
    margin: 10px auto;
}

.img-fluid {
    border: 4px solid black;
    border-radius: 8px;
    padding: 5px;
}


.navbar {
    background-color: black;
    padding: 10px;
}

.navbar-brand, 
.nav-link {
    color: white !important;
    font-weight: bold;
}


.btn {
    background-color: brown;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: darkred;
}


.fare-guide {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.ticket-price {
    font-size: 36px;
    font-weight: bold;
    color: white;
    background: navy;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
}

.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}
table {
    border-collapse: collapse;
    width: 60%;
    margin: 0 auto;
    background-color: white;
}
th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}
th {
    background-color: white;
    color: white;
}

tr {
    background-color: black;
}

#fare-display {
    width: 300px;
    margin: auto;
    text-align: center;
    background: white;
    border-radius: 10px;
}
#fare-result {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

footer {
    background-color: black;
    color: white;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 20px;
}
