/* Reiniciar márgenes y fuentes */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
}

/* GENERAL */

.h2{
    font-size: 14px;
    color: aqua;
}

/* Contenedor principal */

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* Menú lateral */

.logo {
    text-align: left;
    width: 75%;
}

.menu {
    width: 250px;
    background-color: #f8f9fa;
    border-right: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
}

.menu h1 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 100;
    color: cadetblue;
}

.menu h2 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    margin-bottom: 10px;
}

.menu a {
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
}

.menu a:hover {
    color: #0056b3;
}

/* Área de contenido */

.content {
    flex-grow: 1;
    padding: 0;
    box-sizing: border-box;
    overflow-y: auto;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Tabla armarios */

body table {
    margin: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table th {
    background-color: #f4f4f4;
}

input {
    width: 100%;
    border: none;
    padding: 6px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

input:focus {
    outline: none;
    background-color: #e8f0fe;
}

/*
@media print {
    input {
        border: none;
        background-color: transparent;
    }
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.image-box {
    width: 100%;
    height: 200px;
    border: 1px dashed #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #555;
}
img {
    max-width: 100%;
    max-height: 100%;
}
    */