/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #004D40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
}

/* Contenedor principal */
.main-container {
    display: flex;
}

/* Menú lateral */
.sidebar {
    width: 200px;
    background-color: #00796B;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.sidebar ul li a:hover {
    color: #81C784;
}

/* Secciones */
.content {
    flex: 1;
    padding: 20px;
}

h2 {
    color: #004D40;
    margin-bottom: 20px;
}

/* Filtros de búsqueda */
.search-filters {
    margin-bottom: 20px;
}

.search-filters label {
    margin-right: 10px;
}

.search-filters input, .search-filters select {
    padding: 10px;
    font-size: 1.1em;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 200px;
}

.exp expediente-result {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.exp expediente-actions {
    margin-top: 20px;
}

.exp expediente-actions button {
    background-color: #00796B;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    margin-right: 20px;
}

.exp expediente-actions button:hover {
    background-color: #004D40;
}

/* Footer */
footer {
    background-color: #004D40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

.tabla-expediente {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tabla-expediente th, .tabla-expediente td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.tabla-expediente th {
    background-color: #0b4d8b;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
}

.tabla-expediente tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tabla-expediente tr:hover {
    background-color: #e0f3ff;
}
