/* Font generale */
body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Contenitore principale */
.container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Titoli */
h1 {
    color: #2b3da0;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

h2 {
    color: #1f2d80;
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px 14px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #e9ecf9;
    color: #1f2d80;
}

table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Form */
form {
    margin: 20px 0;
}

input, select, button {
    padding: 10px 14px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    font-size: 15px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="number"] {
    background-color: #fff;
}

select {
    background-color: #fff;
}

/* Bottoni */
button,
a.button {
    background-color: #2b3da0;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

button:hover,
a.button:hover {
    background-color: #1f2d80;
}

/* Link normali */
a {
    color: #2b3da0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Messaggi */
p.success {
    color: green;
}

p.error {
    color: red;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    table th, table td {
        padding: 10px;
    }

    input, select, button {
        font-size: 14px;
    }
}
