/* Estilos personalizados para la página de índice ACC CRV */

.acc-info-card {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.acc-info-card .card-header {
    background: rgba(68, 47, 105, 0.7) !important;
    border-radius: 10px 10px 0 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.acc-info-card .card-header h3 {
    color: white !important;
}

.acc-info-card .card-body {
    background-color: transparent !important;
    color: white !important;
    padding: 2rem;
}

.acc-info-card h4, .acc-info-card h5 {
    color: white !important;
    margin-bottom: 1rem;
}

.acc-info-card .table {
    background-color: transparent !important;
    border-radius: 5px;
    overflow: hidden;
}

.acc-info-card .table thead th {
    background-color: rgba(68, 47, 105, 0.8) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.acc-info-card .table tbody td {
    background-color: transparent !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.acc-info-card .table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.acc-info-card .list-group-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: transparent !important;
    color: white !important;
}

.acc-info-card .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Estilos para elementos utilizables y no utilizables */
.utilizable {
    color: white !important;
    font-weight: 600;
}

.no-utilizable {
    color: #ff4757 !important;
    font-weight: 600;
}

/* Iconos de estado */
.status-icon {
    margin-right: 8px;
    font-size: 0.9em;
}

.status-icon.text-success {
    color: white !important;
}

.status-icon.text-danger {
    color: #ff4757 !important;
}

/* Alerts transparentes */
.alert-info {
    background-color: rgba(23, 162, 184, 0.2) !important;
    border-color: rgba(23, 162, 184, 0.3) !important;
    color: white !important;
}

/* Badges */
.badge {
    background-color: rgba(40, 167, 69, 0.8) !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .acc-info-card .card-body {
        padding: 1rem;
    }
    
    .acc-info-card .table-responsive {
        font-size: 0.9rem;
    }
}

/* Animaciones suaves */
.acc-info-card {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sección del título principal */
.dependency-title {
    color: white !important;
    font-weight: 700;
}

.schedule-info {
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Override para texto de párrafos y otros elementos */
.acc-info-card p {
    color: white !important;
}

.acc-info-card strong {
    color: white !important;
}