body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

select,
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.logout {
    background-color: #e98512;
}

button:hover {
    background-color: #45a049;
}

button.logout:hover {
    background-color: #aa6a21;
}

.table {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.row {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.row:last-child {
    border-bottom: none;
}

.cell {
    flex: 1;
    padding: 10px;
    border-right: 1px solid #ccc;
    text-align: center;
}

.cell:last-child {
    border-right: none;
}

.header {
    background-color: #f4f4f4;
    font-weight: bold;
}

.body {
    background-color: #fff;
}

/* Aggiunta di stile responsive */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }

    .cell {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .cell:last-child {
        border-bottom: none;
    }
}