﻿.btn-gradient-custom {
    background: linear-gradient(135deg, #d42578 0%, #88609c 100%) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white !important;
}
.btn-gradient-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(212, 37, 120, 0.4);
}
.text-custom-pink {
    color: #d42578 !important;
}
.text-custom-purple {
    color: #88609c !important;
}
.border-custom-pink {
    border-color: #d42578 !important;
}
.border-custom-purple {
    border-color: #88609c !important;
}
.custom-card-pink .e-input-group.e-control-wrapper.e-input-focus,
.custom-card-pink .e-input-group.e-control-wrapper.e-input-focus::before,
.custom-card-pink .e-input-group.e-control-wrapper.e-input-focus::after,
.custom-card-pink .e-outline.e-input-group.e-control-wrapper.e-input-focus {
    border-color: #d42578 !important;
    box-shadow: 0 0 0 2px rgba(212, 37, 120, 0.2) !important;
}
.custom-card-pink .e-input-group.e-control-wrapper.e-input-focus .e-float-text {
    color: #d42578 !important;
}
/** Se sobreescriben los estilos para las tablas del Syncfusion */
.e-grid .e-gridheader {
    border-radius: 5px !important;
}
.e-grid .e-headercell {
    background: linear-gradient(to bottom, #e784b3 0%, #d42578 100%) !important;
}
.e-grid .e-headercelldiv,
.e-grid .e-headercell .e-headertext {
    color: white !important;
    font-weight: bold !important;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}
.e-grid .e-icon-ascending::before,
.e-grid .e-icon-descending::before {
    color: white !important;
}
.e-grid .e-selectionbackground {
    background-color: rgba(136, 96, 156, 0.1) !important;
    color: #e0639e !important;
}
.e-grid .e-focused:not(.e-less-than):not(.e-greater-than):not(.e-equal):not(.e-not-equal) {
    box-shadow: inset 0 0 0 1px #88609c !important;
}
.e-grid .e-pager .e-currentitem,
.e-grid .e-pager .e-currentitem:hover {
    background-color: #d42578 !important;
    color: white !important;
    border-radius: 50%;
}
.e-grid .e-toolbar-item .e-tbar-btn-text,
.e-grid .e-toolbar-item .e-icons {
    color: #88609c !important;
}
.e-grid .e-toolbar-item .e-tbar-btn:hover {
    background-color: var(--color-gray-200) !important;
}
/* Sobreescribimos el SfCheckBox de Syncfusion --- */
.e-checkbox-wrapper .e-frame.e-check,
.e-css.e-checkbox-wrapper .e-frame.e-check {
    background-color: #d42578 !important;
    border-color: #d42578 !important;
    color: #fff !important;
}
.e-checkbox-wrapper:hover .e-frame.e-check,
.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check {
    background-color: #b91d68 !important;
    box-shadow: 0 0 0 3px rgba(212, 37, 120, 0.2) !important;
}
.e-checkbox-wrapper .e-checkbox:focus + .e-frame {
    border-color: #d42578 !important;
    box-shadow: 0 0 0 3px rgba(212, 37, 120, 0.1) !important;
}
/** Animacion para poder ocular con efecto los filtros */
.animate-fade-in-down {
    animation: fadeInDown 0.3s ease-out;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
