* {
    box-sizing: border-box;
    
}

body {
    text-align: center;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
    padding: 0;
    align-items: center;
}

.hr {

    line-height: 2pc;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.header-left {
    flex: 1;
}

.imagen {
    width: 250px;
    border-radius: 10px;
}

.header-right {
    flex: 2;
}

.header-right p {
    text-align: justify;
}

.admin-btn {
    display: inline-block;
    margin-top: 15px;
    background: #02162b;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}

.admin-btn i {
    margin-right: 6px;
}

/* INFO EN UNA LINEA */
.info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 50px 0;
}

.info div {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* CUADROS */
.cuadros-container {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.cuadros-container section {
    flex: 1;
}

.cuadros-container div {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.menu{

    text-align: center;
    text-decoration: none;
    padding-inline-start: 10px;
}

.box{

    box-sizing: border-box;
}
.header h1{

    text-align: center;
}
/* FOOTER */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

/* RESPONSIVE INDEX */
@media (max-width: 900px) {

    .header {
        flex-direction: column;
        text-align: center;
    }

    .info {
        flex-direction: column;
    }

    .cuadros-container {
        flex-direction: column;
    }

}

/* CONTENEDOR GENERAL */
.page {
    width: 95%;
    max-width: 900px;
    margin: 40px auto;
}

/* CAJAS */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


/* TITULOS */
h1, h2, h3 {
    margin-bottom: 15px;
    text-align: center;
}


/* FORMULARIOS */
input, select, textarea, fieldset {
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

textarea {
    resize: horizontal;
}

/* BOTONES */
button, .btn {
    display: inline-block;
    background: #02162b;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
}

button:hover, .btn:hover {
    background: #03305e;
}


/* TABLAS */
table {
    width: 90%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background: #02162b;
    color: white;
    padding: 10px;
    text-align: left;
}

td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}


/* ESTADOS */
.estado-pendiente { color: orange; font-weight: bold; }
.estado-proceso { color: #007bff; font-weight: bold; }
.estado-resuelto { color: green; font-weight: bold; }

/* RESPONSIVE SIMPLE */
@media (max-width: 768px) {
    .page {
        width: 95%;
        margin: 20px auto;
    }

    table {
        font-size: 14px;
    }
}