body {
    font-family: 'Outfit', sans-serif;
    background-color: #f3f7f6;
    color: #1e293b;
    line-height: 1.5;
}
.navbar-cps {
    background: linear-gradient(135deg, #007b6d, #005c52) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
/* Botones Premium con Efectos Dinámicos y Micro-animaciones */
.btn {
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}
.btn-cps {
    background: linear-gradient(135deg, #008f7e, #007b6d);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 123, 109, 0.2);
}
.btn-cps:hover {
    background: linear-gradient(135deg, #00a390, #008f7e);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 123, 109, 0.35);
}
.btn-outline-cps {
    background-color: transparent;
    color: #007b6d;
    border: 2px solid #007b6d;
}
.btn-outline-cps:hover {
    background-color: #007b6d;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 123, 109, 0.25);
}
.btn-warning {
    background: linear-gradient(135deg, #ffc73c, #ffb800);
    border: none;
    color: #1e293b !important;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.2);
}
.btn-warning:hover {
    background: linear-gradient(135deg, #ffd363, #ffc73c);
    box-shadow: 0 6px 14px rgba(255, 184, 0, 0.35);
}
.btn-danger {
    background: linear-gradient(135deg, #ff5e62, #ff2a2e);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 42, 46, 0.2);
}
.btn-danger:hover {
    background: linear-gradient(135deg, #ff7a7e, #ff5e62);
    box-shadow: 0 6px 14px rgba(255, 42, 46, 0.35);
}
.text-cps {
    color: #007b6d;
}
.card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 16px -6px rgba(0, 0, 0, 0.02) !important;
    background-color: #ffffff;
}
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
}
.table tbody tr {
    transition: all 0.2s ease;
}
.table tbody tr:hover {
    background-color: #f0f7f6 !important;
}
.footer-cps {
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 4rem;
    text-align: center;
}
