
.georgian-fuel-prices {
    max-width: 800px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gfp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e5e9;
}

.gfp-header h3 {
    margin: 0;
    color: #2c3e50;
}

.gfp-update-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.gfp-update-btn:hover {
    background: #2980b9;
}

.gfp-prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.gfp-price-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gfp-price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.gfp-station {
    font-weight: bold;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.gfp-fuel-type {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.gfp-price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 8px;
}

.gfp-updated {
    font-size: 12px;
    color: #95a5a6;
}

.gfp-footer {
    text-align: center;
    color: #7f8c8d;
    font-size: 12px;
}

/* Dark theme */
.gfp-dark {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.gfp-dark .gfp-header {
    border-bottom-color: #34495e;
}

.gfp-dark .gfp-header h3 {
    color: white;
}

.gfp-dark .gfp-price-card {
    background: #34495e;
    border-color: #4a5f7a;
    color: white;
}

.gfp-dark .gfp-station {
    color: white;
}

.gfp-dark .gfp-fuel-type {
    color: #bdc3c7;
}

.gfp-dark .gfp-price {
    color: #2ecc71;
}

.gfp-dark .gfp-updated {
    color: #bdc3c7;
}

.gfp-dark .gfp-footer {
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .gfp-prices-grid {
        grid-template-columns: 1fr;
    }
    
    .gfp-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
