/* Variables Tabler surchargées - Thème ROUGE #d63939 */
:root {
    --tblr-primary: #d63939;
    --tblr-primary-rgb: 214, 57, 57;
    --tblr-link-color: #d63939;
    --tblr-link-hover-color: #b52b2b;
    --tblr-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Éléments spécifiques en rouge */
.bg-primary, .btn-primary, .badge.bg-primary {
    background-color: #d63939 !important;
}

.btn-primary {
    border-color: #d63939;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #b52b2b;
    border-color: #b52b2b;
}

.text-primary {
    color: #d63939 !important;
}

.border-primary {
    border-color: #d63939 !important;
}

/* Navigation active en rouge */
.nav-link.active, .navbar-nav .active > .nav-link {
    color: #d63939;
}

/* Bottom Navigation - Bouton central en rouge */
.fixed-bottom .btn-primary {
    background-color: #d63939;
    border-color: #d63939;
    box-shadow: 0 4px 12px rgba(214, 57, 57, 0.4);
}

/* Formulaires focus en rouge */
.form-control:focus, .form-select:focus {
    border-color: #d63939;
    box-shadow: 0 0 0 0.25rem rgba(214, 57, 57, 0.25);
}

/* Optimisation tactile mobile */
.btn {
    min-height: 48px;
    touch-action: manipulation;
}

.form-control {
    font-size: 16px;
    min-height: 48px;
}

/* Cards prospection avec accent rouge */
.prospect-card {
    transition: transform 0.2s;
    border-left: 4px solid transparent;
}

.prospect-card:active {
    transform: scale(0.98);
}

.prospect-card.interest-hot { border-left-color: #d63939; }
.prospect-card.interest-warm { border-left-color: #f76707; }
.prospect-card.interest-cold { border-left-color: #74b816; }

/* Header/navbar custom rouge subtil */
.navbar-brand-autodark {
    color: #d63939 !important;
}

/* Alertes adaptées */
.alert-success {
    background-color: rgba(214, 57, 57, 0.1);
    border-color: rgba(214, 57, 57, 0.2);
    color: #d63939;
}

/* Status en ligne */
.text-success {
    color: #d63939 !important;
}

/***********************************************************************************/
/* Timeline verticale mobile */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e6e7e9;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

.timeline-content {
    flex: 1;
}

/* Scroll horizontal jours */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.min-w-auto {
    min-width: 60px;
}

/* Cards tactiles */
.timeline .card {
    touch-action: pan-y;
}