﻿body {
    background: linear-gradient(135deg, #c7d1d8, #aebbc4);
    min-height: 100vh;
}

.empleados-card {
    background-color: #f4f7fa;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border: 1px solid #8ea1ad;
}

.titulo-tabla {
    color: #2f4858;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-control {
    border-radius: 10px;
    border: 1.5px solid #8ea1ad;
    padding: 10px;
    background-color: white;
    transition: all 0.2s ease-in-out;
}

    .form-control:focus {
        border-color: #4f6d7a;
        box-shadow: 0 0 0 0.15rem rgba(79,109,122,0.25);
    }

.btn-buscar {
    background-color: #2d89ef;
    border: 2px solid #1f6fc9;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 18px;
    transition: 0.2s ease;
}

    .btn-buscar:hover {
        background-color: #1f6fc9;
        border-color: #1557a0;
    }

.table {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
}

    .table thead {
        background-color: #4f6d7a;
        color: white;
    }

    .table th {
        padding: 15px;
        border: none;
    }

    .table td {
        padding: 14px;
        vertical-align: middle;
        border-color: #d5dde3;
    }

    .table tbody tr:hover {
        background-color: #e9eff3;
        transition: 0.2s ease;
    }

.acciones {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filtros-box {
    background-color: #eef3f6;
    border: 1px solid #d5dde3;
    border-radius: 14px;
    padding: 20px;
}

.form-label {
    font-weight: 700;
    color: #415a6b;
}

.form-select,
.form-control {
    border-radius: 10px;
    border: 1px solid #bcc8cf;
    padding: 10px 12px;
}

    .form-select:focus,
    .form-control:focus {
        border-color: #6c7a86;
        box-shadow: 0 0 0 0.15rem rgba(108,122,134,0.15);
    }
