/* Γενικές Ρυθμίσεις */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Κεντρικό Container */
.container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 30px auto;
}

/* Weather Box */
.weather-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Εισαγωγή και Select */
select, input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* Κουμπί Αναζήτησης */
button {
    background-color: #ff9800;
    border: none;
    color: white;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #e68900;
    transform: scale(1.05);
}

/* Στυλ Πίνακα */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

th {
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
}

/* Στυλ Navbar */
/* Navbar */
.navbar {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Links */
.navbar .nav-link {
    color: #222 !important;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Εφέ hover */
.navbar .nav-link:hover {
    color: #222 !important;
    transform: scale(1.1) !important;
}
.navbar .nav-link.active {
    color: #222 !important;
}

/* Ενημέρωση για το site-title */
.site-title {
    color: #222 !important;
    transition: color 0.3s ease-in-out;
}




/* Footer */
/* footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    width: 100%;
    position: fixed;
    bottom: 0;
} */
.social-icons a {
    transition: all 0.2s ease-in-out !important;
}

.social-icons a:hover {
    color: #0d6efd !important;
    transform: scale(1.4) !important;
}



/* Κάνουμε το footer να κολλάει τέρμα κάτω */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 18px;
    }

    header {
        font-size: 1.4rem;
        padding: 15px 0;
    }

    button {
        font-size: 1rem;
        padding: 10px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

