/* =======================================================
   Βασική επαναφορά αποστάσεων
======================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =======================================================
   Γενικό σώμα σελίδας
======================================================= */

body {
    font-family: Arial, sans-serif;
    color: #102033;
    background: #f5f8fb;
    line-height: 1.6;
}

/* =======================================================
   Header
======================================================= */

header {
    background: linear-gradient(135deg, #061a33, #0d6efd);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

header p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
}

/* =======================================================
   Μενού πλοήγησης
======================================================= */

nav {
    background: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    color: #0d3768;
    text-decoration: none;
    margin: 0 14px;
    font-weight: bold;
}

/* =======================================================
   Sections
======================================================= */

section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* =======================================================
   Κάρτες περιεχομένου
======================================================= */

.card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* =======================================================
   Τίτλοι
======================================================= */

h2 {
    color: #0d3768;
    margin-bottom: 18px;
    font-size: 30px;
}

/* =======================================================
   Grid για στοιχεία και υπηρεσίες
======================================================= */

.info-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

/* =======================================================
   Κουτιά πληροφοριών
======================================================= */

.info-box,
.service-box {
    background: #eef5ff;
    padding: 20px;
    border-radius: 14px;
    border-left: 5px solid #0d6efd;
}

.info-box strong {
    display: block;
    color: #061a33;
    margin-bottom: 5px;
}

/* =======================================================
   Πίνακας ισολογισμών
======================================================= */

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dde6f0;
}

th {
    background: #0d3768;
    color: white;
}

/* =======================================================
   Κουμπιά
======================================================= */

.btn {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* =======================================================
   Στοίχιση κουμπιών πίνακα
======================================================= */

.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* =======================================================
   Κουμπί διαγραφής
======================================================= */

.delete-btn {
    background: #dc3545 !important;
}

/* =======================================================
   Login box
======================================================= */

.login-box {
    max-width: 430px;
    margin: auto;
}

/* =======================================================
   Inputs και selects
======================================================= */

input,
select {
    width: 100%;
    padding: 13px;
    margin: 8px 0 15px;
    border: 1px solid #cfd9e5;
    border-radius: 10px;
    font-size: 15px;
}

/* =======================================================
   Κανονικό button φόρμας
======================================================= */

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* =======================================================
   Μηνύματα
======================================================= */

.error-message {
    color: red;
    margin-top: 15px;
}

.success-message {
    margin-top: 15px;
    color: #0d3768;
    font-weight: bold;
}

/* =======================================================
   Footer
======================================================= */

footer {
    text-align: center;
    padding: 30px 20px;
    background: #061a33;
    color: white;
    margin-top: 50px;
}

/* =======================================================
   Responsive
======================================================= */

@media (max-width: 600px) {

    header h1 {
        font-size: 30px;
    }

    nav a {
        display: block;
        margin: 8px 0;
    }

    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}