* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* CONTENEDOR PRINCIPAL */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CAJA LOGIN */
.login-box {
    background: white;
    padding: 50px 40px;
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
}

/* TITULO */
.login-box h1 {
    font-size: 28px;
    color: #7d9a90;
    font-weight: 500;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

/* INPUTS */
.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.login-box input:focus {
    border-color: #7d9a90;
    outline: none;
}

/* BOTON */
.login-box button {
    width: 100%;
    padding: 12px;
    background-color: #7d9a90;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background-color: #6b877e;
}

/* ERROR */
.error {
    background-color: #f8d7da;
    color: #842029;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

/* ===== PANEL GENERAL ===== */

.panel-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.panel-container h2 {
    color: #7d9a90;
    font-weight: 500;
    margin-bottom: 5px;
}

.panel-container h3 {
    color: #555;
    font-weight: 400;
    margin-bottom: 25px;
}

/* ===== BUSCADOR ===== */

.search-form {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.search-form input {
    padding: 10px;
    width: 280px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.search-form input:focus {
    border-color: #7d9a90;
    outline: none;
}

.search-form button {
    padding: 10px 16px;
    background-color: #7d9a90;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.search-form button:hover {
    background-color: #6b877e;
}

/* ===== TABLA ===== */

.tabla {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.tabla th {
    background-color: #e9efec;
    text-align: left;
    padding: 14px;
    font-weight: 500;
    color: #555;
}

.tabla td {
    padding: 14px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

.tabla tr:hover {
    background-color: #f9fbfa;
}

/* ===== BOTONES DE ACCIÓN ===== */

.btn {
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid #7d9a90;
    color: #7d9a90;
    transition: 0.3s;
}

.btn:hover {
    background-color: #7d9a90;
    color: white;
}