.entry-title {
    margin-top: 50px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #374151;
    font-weight: 700;
    font-size: 32px;
}

/* Contenedor principal */
.dashboard-cotizaciones {
    padding: 32px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1400px;
}

/* Sección de filtros */
.dashboard-filters {
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.dashboard-filters:hover {
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.12);
    transform: translateY(-3px);
}

/* Formulario de filtros de fecha */
.date-filter-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Contenedor de botones preestablecidos */
.presets-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

/* Botones preestablecidos */
.preset-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #eef2f7;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #4f46e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.preset-btn span {
    position: relative;
    z-index: 2;
}

.preset-btn:hover {
    color: white;
    border-color: transparent;
}

.preset-btn:hover::before {
    opacity: 1;
}

.preset-btn.active {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Selector de fechas personalizado */
.custom-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.custom-dates label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.custom-dates input[type="date"] {
    padding: 12px 16px;
    border: 2px solid #eef2f7;
    border-radius: 12px;
    background: white;
    font-size: 14px;
    color: #374151;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-dates input[type="date"]:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

/* Botón de filtrado */
.filter-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%)!important;
    border: none!important;
    border-radius: 10px!important;
    color: white!important;
    padding: 12px 24px!important;
    font-weight: 600!important;
    cursor: pointer!important;
    transition: all 0.3sease!important;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

/* Secciones del dashboard */
.dashboard-section {
    margin-bottom: 40px;
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
}

.dashboard-section h3 {
    color: #374151;
    margin-bottom: 28px;
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
}

/* Grid de estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 180px));
    gap: 24px;
    margin-bottom: 32px;
}

/* Tarjetas de estadísticas */
.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.12);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-title {
    display: block;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Tabla de estadísticas */
.stats-table {
    width: 100%;
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
}

.stats-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.stats-table thead{
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.stats-table th {
    color: white;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    letter-spacing: 0.5px;
    vertical-align: middle;
    text-align: center;
}

.stats-table th:first-child {
    border-top-left-radius: 16px;
}

.stats-table th:last-child {
    border-top-right-radius: 16px;
}

.stats-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    color: #374151;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: middle;
}

.stats-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stats-table tr:hover td {
    color: #4f46e5; 
} 
/* Responsive */
@media (max-width: 768px) {
    .dashboard-cotizaciones {
        padding: 20px;
        margin: 20px;
        border-radius: 16px;
    }

    .dashboard-section {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-value {
        font-size: 24px;
    }

    .custom-dates {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .custom-dates label {
        flex-direction: column;
        align-items: stretch;
    }

    .presets-container {
        flex-direction: column;
    }

    .preset-btn {
        width: 100%;
    }

    .stats-table {
        margin: 0 -20px;
        width: calc(100% + 40px);
        border-radius: 0;
    }

    .stats-table th,
    .stats-table td {
        padding: 12px 16px;
    }
}

.mr-1 {
    margin-right: 10px !important;
}

.cc-action-btn:hover,
.acf-button:hover{
    color:white!important;
}
