* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background: #f5f5f5; color: #333; } header { background: #e63946; color: white; padding: 20px; text-align: center; } header h1 { font-size: 2em; } header .subtitle { font-size: 1em; opacity: 0.9; margin-top: 5px; } main { max-width: 800px; margin: 0 auto; padding: 20px; } .filters { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; } .filters select { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 1em; min-width: 150px; } .filters button { padding: 10px 20px; background: #e63946; color: white; border: none; border-radius: 8px; font-size: 1em; cursor: pointer; } .filters button:hover { background: #c1121f; } .prices-section { margin-bottom: 30px; } .prices-section h2 { margin-bottom: 15px; color: #333; } .price-card { background: white; border-radius: 10px; padding: 15px; margin-bottom: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; } .price-card .price-info { flex: 1; } .price-card .price-amount { font-size: 1.8em; font-weight: bold; color: #2d6a4f; } .price-card .station-name { font-size: 1.1em; font-weight: bold; } .price-card .municipality { color: #666; font-size: 0.9em; } .price-card .fuel-badge { padding: 4px 10px; border-radius: 20px; font-size: 0.8em; font-weight: bold; } .fuel-Regular { background: #caf0f8; color: #0077b6; } .fuel-Premium { background: #ffd6a5; color: #e85d04; } .fuel-Diesel { background: #d8f3dc; color: #1b4332; } .price-card .time-ago { color: #999; font-size: 0.85em; } .price-card.outdated { opacity: 0.5; } .votes { display: flex; gap: 10px; align-items: center; } .votes button { background: none; border: 1px solid #ddd; border-radius: 8px; padding: 5px 10px; cursor: pointer; font-size: 1em; } .votes button:hover { background: #f0f0f0; } .report-section { background: white; border-radius: 10px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin-bottom: 30px; } .report-section h2 { margin-bottom: 20px; color: #333; } .form-group { margin-bottom: 15px; } .form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1em; } .btn-report { width: 100%; padding: 15px; background: #e63946; color: white; border: none; border-radius: 8px; font-size: 1.1em; cursor: pointer; font-weight: bold; } .btn-report:hover { background: #c1121f; } #form-message { margin-top: 10px; padding: 10px; border-radius: 8px; text-align: center; } .success { background: #d8f3dc; color: #1b4332; } .error { background: #ffe0e0; color: #c1121f; } .ad-container { margin: 20px 0; text-align: center; background: #f0f0f0; padding: 10px; border-radius: 8px; } footer { text-align: center; padding: 20px; color: #666; font-size: 0.9em; } @media (max-width: 600px) { header h1 { font-size: 1.5em; } .price-card .price-amount { font-size: 1.4em; } .filters { flex-direction: column; } }