.gas-station-card {
    transition: transform 0.2s;
}
.gas-station-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.price-badge {
    font-size: 1.5rem;
    font-weight: bold;
}
.badge-cheapest {
    background: linear-gradient(45deg, #28a745, #20c997);
}
.badge-closest {
    background: linear-gradient(45deg, #007bff, #0056b3);
}
.loading-spinner {
    display: none;
}
.loading-spinner.active {
    display: block;
}
.location-detect {
    cursor: pointer;
    color: #dc3545;
    font-size: 1.2rem;
}
.location-detect:hover {
    color: #bb2d3b;
}
.directions {
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.sidebar {
    height: calc(100dvh - 56px);
}