/* Verde suave */
:root {
    --verde-principal: #5fa777;
    --verde-hover: #4c8d62;
}

/* NAVBAR */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand {
    font-weight: bold;
    color: #2d6a4f !important;
}

/* Links */
.navbar-nav .nav-link {
    color: #444 !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 15px !important;
    border-radius: 8px;
    transition: all .25s ease;
}

    /* Hover */
    .navbar-nav .nav-link:hover {
        background-color: #d8f3dc;
        color: #2d6a4f !important;
        transform: translateY(-2px);
    }

    /* Página actual */
    .navbar-nav .nav-link.active {
        background-color: #95d5b2;
        color: #1b4332 !important;
    }

.navbar-nav .nav-link {
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 50%;
        width: 0;
        height: 3px;
        background-color: #52b788;
        transition: .3s;
        transform: translateX(-50%);
        border-radius: 5px;
    }

    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }

/* Sacar footer */
footer {
    display: none;
}

/* Formularios */
form {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fafafa;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

/* Titulos */
h1, h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* Inputs */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Botones */
input[type="submit"],
.btn {
    background-color: var(--verde-principal);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: .2s;
}

    input[type="submit"]:hover,
    .btn:hover {
        background-color: var(--verde-hover);
    }

/* Tablas */
table {
    width: 85%;
    margin: 30px auto;
    background-color: white;
}

th {
    background-color: var(--verde-principal);
    color: white;
}

th, td {
    padding: 12px;
    text-align: center;
}

/* Links de acciones */
a {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: 600;
}

    a:hover {
        color: var(--verde-hover);
    }

    /*Boton cerrar sesion*/
.logout-box {
    width: fit-content;
    margin: 40px auto;
    padding: 25px 35px;
    background-color: #f3f3f3;
    border-radius: 15px;
    border: 1px solid #ddd;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

    .logout-box form {
        margin: 0;
        padding: 0;
        background: none;
        border: none;
    }

.btn-verde {
    background-color: #5fa777;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
}

.btn-gris {
    background-color: #d9d9d9;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
}

    .btn-gris:hover {
        background-color: #c8c8c8;
    }

.btn-verde:hover {
    background-color: #4f9165;
}
