/* Stile Responsive per Elenco Utenti */
.elenco-utenti-container {
    max-width: 1000px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.elenco-utenti-container h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Form di Ricerca */
.filtri-utenti {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    gap: 15px;
}

.filtri-utenti input[type="text"],
.filtri-utenti select {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.filtri-utenti input[type="text"]:focus,
.filtri-utenti select:focus {
    outline: none;
    border-color: #3498db;
}

.filtri-utenti button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filtri-utenti button:hover {
    background-color: #2980b9;
}

/* Tabella Utenti */
.tabella-responsive {
    width: 100%;
    overflow-x: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.elenco-utenti {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.elenco-utenti thead {
    background-color: #f8f9fa;
}

.elenco-utenti th {
    background-color: #f1f3f5;
    color: #2c3e50;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
}

.elenco-utenti td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.elenco-utenti tr:last-child td {
    border-bottom: none;
}

.elenco-utenti tr:hover {
    background-color: #f1f3f5;
    transition: background-color 0.3s ease;
}

/* Paginazione */
.paginazione {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

.paginazione .pagina {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #2c3e50;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.paginazione .pagina:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.paginazione .pagina.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .filtri-utenti {
        flex-direction: column;
        align-items: center;
    }

    .filtri-utenti input,
    .filtri-utenti select,
    .filtri-utenti button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }

    .paginazione .pagina {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}