#fuelForm, #fuelResults {
    max-width: 1100px;
    margin: 20px auto;
}

#fuelForm .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

#fuelForm label {
    margin-bottom: 5px;
    font-weight: bold;
/*	font-size: 13px;*/
}

#fuelForm {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#fuelForm .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

#fuelForm .form-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

#fuelForm .form-buttons button {
    height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
}
#fuelForm input,
#fuelForm select,
#fuelForm button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

#fuelForm button {
    background: #004aad;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

#fuelForm button:hover {
    background: #003580;
}

#geoBtn {
    display: block;
    margin: 10px auto;
    padding: 10px 15px;
    background: #ff9900;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#geoBtn:hover {
    background: #cc7a00;
}

#fuelResults table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#fuelResults th {
    background: #004aad;
    color: #fff;
    padding: 12px;
    text-align: left;
    cursor: pointer;
	font-size: 16px;
}

#fuelResults td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#fuelResults tr:nth-child(even) {
    background: #f9f9f9;
}

#fuelResults tr:hover {
    background: #e6f0ff;
}

.price-low {
    color: #008000;
    font-weight: bold;
}

.loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
}

@media(max-width: 768px) {
    #fuelForm {
        flex-direction: column;
    }

    #fuelResults table {
        font-size: 13px;
    }
}