/* Βασικές ρυθμίσεις */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #000428, #004e92);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.5rem;
    margin-top: 20px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
}

/* Κεντρικό Container */
#weather-container {
    max-width: 800px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}

select, button {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Weather Info */
#weather-info {
    font-size: 1.2rem;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
}

/* Χάρτης */
#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}
.weather-boxes {
		display: flex;
		gap: 10px;
		justify-content: center;
		flex-wrap: wrap;
}
.weather-box {
	width: 100%;
	max-width: 440px;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
a.header {color:#fff;}
div.update {padding-bottom:10px;}

.chart-select {
    color: white;
    background-color: #333;
    border: 1px solid #555;
    padding: 8px;
    font-size: 16px;
}

.chart-select option {
    color: white;
    background-color: #444;
}


/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    select, button {
        font-size: 0.9rem;
    }
}
