.inventario-salones-section {
    width: 95%;
    margin: 20px auto;
    font-family: 'Trebuchet MS', sans-serif;
}

.inventario-salones-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00695c; /* color del encabezado */
    font-size: 1.9rem;
    letter-spacing: 1px;
}

.inventario-salones-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background: #e0f2f1; /* fondo de la tabla */
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.inventario-salones-table th, 
.inventario-salones-table td {
    padding: 14px 18px;
    text-align: left;
}

.inventario-salones-table thead {
    background-color: #004d40; /* color encabezado */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.inventario-salones-table tbody tr:nth-child(even) {
    background-color: #b2dfdb; /* filas pares */
}

.inventario-salones-table tbody tr:hover {
    background-color: #80cbc4; /* hover */
    transition: 0.3s;
}

.salones-volver-container {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.salones-btn-volver {
    background: #004d40;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.salones-btn-volver:hover {
    background: #00695c;
    transform: scale(1.05);
}
