.dubai-taxi-calculator {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
} .calculator-header {
text-align: center;
margin-bottom: 2rem;
}
.calculator-header h2 {
font-size: 2.5rem;
color: #2c3e50;
margin: 0;
font-weight: 600;
}
.calculator-header .subtitle {
color: #7f8c8d;
font-size: 1.1rem;
margin-top: 0.5rem;
} .input-section {
padding: 2rem;
background: #f8f9fa;
border-radius: 12px 12px 0 0;
}
.input-group {
max-width: 800px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.input-wrapper {
position: relative;
width: 100%;
}
.input-wrapper input {
width: 100%;
padding: 1.2rem 1.5rem;
font-size: 1.1rem;
border: 2px solid #e0e0e0;
border-radius: 12px;
background: #fff;
transition: all 0.3s ease;
}
.input-wrapper:first-child input {
border-color: #4CAF50;
}
.input-wrapper:last-child input {
border-color: #f44336;
}
.input-wrapper input:focus {
outline: none;
box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
} .autocomplete-dropdown {
position: absolute;
top: calc(100% + 5px);
left: 0;
right: 0;
background: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
z-index: 1002;
max-height: 300px;
overflow-y: auto;
border: 1px solid #e0e0e0;
display: none;
}
.autocomplete-dropdown.visible {
display: block;
}
.autocomplete-item {
padding: 1rem 1.5rem;
cursor: pointer;
border-bottom: 1px solid #f0f0f0;
}
.autocomplete-item:hover {
background: #f8f9fa;
} .map-container {
width: 100%;
height: 500px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
#route-map {
width: 100%;
height: 100%;
} .price-details-container {
max-width: 700px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 1rem !important;
padding: 1.5rem !important;
}
.price-card {
background: white !important;
border-radius: 12px !important;
padding: 1.2rem !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
.card-title {
font-size: 0.8rem !important;
color: #666 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
margin-bottom: 0.8rem !important;
font-weight: 600 !important;
}
.price-value {
font-size: 1.8rem !important;
font-weight: 700 !important;
color: #2c3e50 !important;
margin-bottom: 0.2rem !important;
line-height: 1.2 !important;
}
.price-detail {
color: #4CAF50 !important;
font-size: 1rem !important;
font-weight: 500 !important;
} .toll-gates-list {
margin-top: 0.8rem !important;
padding-top: 0.8rem !important;
border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.toll-gate-item {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
font-size: 0.9rem !important;
padding: 0.4rem 0 !important;
}
.toll-gate-name {
color: #2c3e50 !important;
font-weight: 500 !important;
}
.toll-gate-price {
color: #4CAF50 !important;
font-weight: 600 !important;
} .total-price-container {
max-width: 700px !important;
margin: 0 auto !important;
padding: 0 1.5rem 1.5rem !important;
}
.price-card.highlight {
background: white !important;
border: 2px solid #28a745 !important;
margin-top: 1rem !important;
}
.price-card.highlight .total-price-row {
display: flex !important;
align-items: center !important;
gap: 1rem !important;
margin-bottom: 1.5rem !important;
}
.price-card.highlight .price-value {
color: #28a745 !important;
font-size: 2.2rem !important;
margin-bottom: 0 !important;
}
.price-card.highlight .eur-price {
color: #666 !important;
font-size: 2rem !important;
font-weight: 600 !important;
background: #f0f7f2 !important;
padding: 0.3rem 1rem !important;
border-radius: 8px !important;
border: 1px solid #e0e0e0 !important;
} .payment-methods {
margin-top: 1.2rem !important;
padding-top: 1rem !important;
border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.payment-title {
color: #666 !important;
font-size: 0.85rem !important;
margin-bottom: 0.8rem !important;
text-align: center !important;
}
.payment-icons {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
justify-content: center;
}
.payment-icon {
background: #f8f9fa !important;
padding: 0.6rem 1rem !important;
border-radius: 30px !important;
font-size: 0.9rem !important;
color: #495057 !important;
border: 1px solid #dee2e6 !important;
} .price-disclaimer {
max-width: 700px !important;
margin: 0 auto !important;
} @media (max-width: 1024px) {
.price-details-container {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
padding: 1.5rem;
}
}
@media (max-width: 768px) {
.dubai-taxi-calculator {
padding: 1rem;
}
.calculator-header h2 {
font-size: 2rem;
}
.map-container {
height: 400px;
}
.price-details-container {
grid-template-columns: repeat(2, 1fr) !important;
}
.price-card:last-child {
grid-column: span 2 !important;
}
}
@media (max-width: 640px) {
.price-details-container {
grid-template-columns: 1fr !important;
}
.price-card:last-child {
grid-column: span 1 !important;
}
.price-card {
padding: 1.2rem;
}
} .journey-box {
max-width: 700px !important;
margin: 0 auto 1rem !important;
background: #f9f9f9 !important;
border-radius: 10px !important;
padding: 1.2rem !important;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
display: flex !important;
justify-content: space-around !important;
margin-top: -1rem !important;
}
.journey-item {
text-align: center !important;
padding: 0.5rem 1rem !important;
flex: 1 !important;
}
.journey-item:first-child {
border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.journey-label {
font-size: 0.8rem !important;
color: #6c757d !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
margin-bottom: 0.5rem !important;
}
.journey-value {
font-size: 1.5rem !important;
font-weight: 600 !important;
color: #28a745 !important;
}.dubai-klima-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
width: 95%;
margin-bottom: 50px;
}
.klima-title {
text-align: center;
margin-bottom: 25px;
font-size: 28px;
color: #333;
}
.klima-chart-container {
margin: 20px 0;
height: 400px;
min-height: 300px;
}
.klima-info {
margin-top: 30px;
padding: 20px;
background: #f5f5f5;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.klima-stats {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.klima-stats p {
margin: 0;
font-size: 16px;
text-align: center;
padding: 10px 20px;
background: white;
border-radius: 6px;
width: auto;
min-width: 250px;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.klima-stats p:first-child {
color: #2c3e50;
border-left: 4px solid #3498db;
}
.klima-stats p:last-child {
color: #2c3e50;
border-left: 4px solid #2ecc71;
}
.year-selector {
margin: 20px 0;
text-align: center;
}
.year-selector select {
padding: 8px 15px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px;
margin-left: 10px;
max-width: 150px;
}
.year-selector label {
font-size: 16px;
font-weight: bold;
}
.data-notice {
font-size: 14px;
color: #666;
font-style: italic;
text-align: center;
margin: 10px 0;
padding: 0 10px;
}
.klima-info-top {
margin-bottom: 20px;
}
@media (max-width: 768px) {
.klima-title {
font-size: 24px;
}
.year-selector {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.year-selector select {
margin-left: 0;
}
.klima-chart-container {
height: 350px;
}
.klima-stats p {
min-width: 200px;
font-size: 15px;
}
}
@media (max-width: 480px) {
.dubai-klima-container {
padding: 15px;
margin-bottom: 40px;
}
.klima-title {
font-size: 22px;
}
.klima-chart-container {
height: 300px;
}
.year-selector label, 
.year-selector select {
font-size: 14px;
}
.klima-stats p {
min-width: 180px;
font-size: 14px;
padding: 8px 15px;
}
} .chart-container-wrapper {
display: flex;
flex-direction: column;
gap: 30px;
margin: 20px 0;
}
.klima-chart-container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
height: 350px;
}
.klima-chart-container h3 {
text-align: center;
margin: 0 0 15px 0;
color: #2c3e50;
font-size: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.klima-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
padding: 15px;
}
.klima-stats p {
margin: 0;
padding: 15px;
background: white;
border-radius: 6px;
text-align: center;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.klima-stats p:nth-child(2) {
color: #2c3e50;
border-left: 4px solid rgb(75, 192, 192); }
.klima-stats p:nth-child(3) {
color: #2c3e50;
border-left: 4px solid #2ecc71; }
.klima-stats p:nth-child(4) {
border-left: 4px solid #f1c40f; }
.klima-stats p:nth-child(5) {
border-left: 4px solid #95a5a6; }
@media (max-width: 768px) {
.klima-stats {
grid-template-columns: 1fr;
}
.klima-chart-container h3 {
font-size: 18px;
}
.klima-chart-container {
height: 300px;
}
} .stats-title {
text-align: center;
margin-bottom: 20px;
color: #2c3e50;
font-size: 22px;
}
.klima-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
padding: 0 15px;
}
.stat-card {
background: white;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.stat-card:hover {
transform: translateY(-2px);
}
.stat-icon {
font-size: 24px;
margin-bottom: 10px;
}
.stat-label {
color: #7f8c8d;
font-size: 14px;
margin-bottom: 5px;
}
.stat-value {
color: #2c3e50;
font-size: 24px;
font-weight: bold;
}
.best-travel-time {
text-align: center;
margin-top: 30px;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.best-travel-time .stat-icon {
margin-bottom: 5px;
}
.best-travel-time .stat-label {
font-size: 16px;
color: #2c3e50;
}
@media (max-width: 768px) {
.klima-stats {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.klima-stats {
grid-template-columns: 1fr;
}
.stat-card {
padding: 15px;
}
.stat-value {
font-size: 20px;
}
} .chart-error {
text-align: center;
color: #e74c3c;
padding: 20px;
margin: 0;
}
@media (max-width: 480px) {
.klima-chart-container {
min-height: 250px;
height: 250px;
padding: 10px;
}
canvas {
width: 100% !important;
height: 100% !important;
}
}
.mobile-notice {
display: none; text-align: center;
color: #2c3e50;
font-size: 14px;
margin: 10px 0;
padding: 8px 15px;
background: #fff3cd;
border-radius: 4px;
border: 1px solid #ffeeba;
}
@media (max-width: 768px) {
.mobile-notice {
display: block; }
}