/* Dashboard Front-End Styles - Compatible avec Blocksy - Design Moderne - Version 2.0 */

.prospection-dashboard-front,
.prospection-contacts-front,
.prospection-sms-history-front,
.prospection-sms-replies-front,
.prospection-send-sms-front,
.prospection-bulk-sms-front,
.prospection-automation-front,
.prospection-exclusions-front {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px 40px 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    background: transparent !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* Quand dans le layout wrapper, forcer encore plus - VERSION FINALE */
.prospection-content-inner .prospection-dashboard-front,
.prospection-content-inner .prospection-contacts-front,
.prospection-content-inner .prospection-sms-history-front,
.prospection-content-inner .prospection-sms-replies-front,
.prospection-content-inner .prospection-send-sms-front,
.prospection-content-inner .prospection-bulk-sms-front,
.prospection-content-inner .prospection-automation-front,
.prospection-content-inner .prospection-exclusions-front {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px 40px 20px !important;
    box-sizing: border-box !important;
    display: block !important;
    min-width: 0 !important;
}

/* Forcer tous les éléments enfants à prendre toute la largeur */
.prospection-content-inner .prospection-dashboard-front > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.dashboard-header h1 {
    margin: 0 !important;
    margin-block-end: 0 !important;
    margin-bottom: 0 !important;
    font-size: 2.5rem;
    color: #1d2327;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.reset-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

/* Buttons - Design moderne avec dégradés */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3338;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e8ecf1 0%, #b8c5d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #2c3338;
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.5);
    color: white;
}

.btn-link {
    background: transparent;
    color: #667eea;
    text-decoration: none;
    padding: 10px 16px;
    box-shadow: none;
}

.btn-link:hover {
    color: #764ba2;
    text-decoration: underline;
    transform: none;
}

/* Notifications */
.notifications-wrapper {
    margin-bottom: 30px;
}

.notification-item {
    margin-bottom: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Grid - Cards redesignées */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-card.stat-alert {
    border-left: 4px solid #d63638;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.stat-card.stat-alert::before {
    background: linear-gradient(90deg, #d63638 0%, #ff6b6b 100%);
}

.stat-card h3 {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 3rem;
    margin: 15px 0;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, currentColor 0%, currentColor 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-blue {
    color: #667eea;
}

.stat-green {
    color: #11998e;
}

.stat-red {
    color: #d63638;
}

.stat-yellow {
    color: #f6c23e;
}

.stat-detail {
    color: #666;
    font-size: 13px;
    display: block;
    margin-top: 12px;
    font-weight: 500;
}

.stat-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.stat-link:hover {
    text-decoration: underline;
    transform: translateX(4px);
    display: inline-block;
}

/* Goal Card - Design amélioré */
.goal-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.goal-header h3 {
    margin: 0;
    color: #666;
    font-size: 18px;
    font-weight: 700;
}

.goal-count {
    font-size: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.progress-bar {
    background: linear-gradient(135deg, #f0f0f1 0%, #e8e8e8 100%);
    border-radius: 12px;
    height: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #11998e 100%);
    height: 100%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.goal-detail {
    color: #666;
    font-size: 14px;
    display: block;
    font-weight: 500;
}

/* Content Grid */
.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }
}

.content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.content-card h3 {
    margin: 0 0 24px 0;
    color: #1d2327;
    font-size: 18px;
    font-weight: 700;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-header h3 {
    margin: 0;
}

.card-link {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.card-link:hover {
    color: #764ba2;
    text-decoration: underline;
    transform: translateX(4px);
    display: inline-block;
}

/* Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.action-btn.btn-secondary {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3338;
}

.action-btn.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Replies List */
.replies-list {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.replies-list::-webkit-scrollbar {
    width: 6px;
}

.replies-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.replies-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.reply-item {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 8px;
}

.reply-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(4px);
}

.reply-item.reply-unread {
    background: linear-gradient(135deg, #fff9e5 0%, #fff5d6 100%);
    border-left: 4px solid #f6c23e;
    margin-left: -16px;
    padding-left: 12px;
    box-shadow: 0 2px 8px rgba(246, 194, 62, 0.2);
}

.reply-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reply-number {
    font-size: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.reply-date {
    color: #999;
    font-size: 12px;
}

.reply-message {
    margin: 0;
    font-size: 13px;
    color: #50575e;
    line-height: 1.6;
}

.empty-state {
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 40px 20px;
    margin: 0;
}

/* Chart Card */
.chart-card {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-card h3 {
    margin: 0 0 24px 0;
    color: #1d2327;
    font-size: 18px;
    font-weight: 700;
}

.chart-card canvas {
    max-height: 350px;
}

/* Stats Tabs */
.stats-tabs-wrapper {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    padding-bottom: 0;
}

.nav-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px 8px 0 0;
}

.nav-tab.nav-tab-active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px 8px 0 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .prospection-dashboard-front {
        padding: 20px 15px !important;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .dashboard-header h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    .dashboard-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .dashboard-actions .btn,
    .dashboard-actions .button {
        width: 100%;
        margin: 5px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-value {
        font-size: 2.5rem !important;
    }
    
    .stat-card h3 {
        font-size: 13px;
    }
    
    .actions-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .dashboard-content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .content-card {
        padding: 20px 15px;
    }
    
    .goal-card {
        padding: 20px 15px;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-tab {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1;
        min-width: 120px;
    }
    
    .chart-card {
        padding: 20px 15px;
    }
    
    .chart-card canvas {
        max-height: 250px;
    }
    
    .replies-list {
        max-height: 300px;
    }
    
    .reply-item {
        padding: 12px;
    }
}

/* Responsive très petit écran */
@media (max-width: 480px) {
    .prospection-dashboard-front {
        padding: 15px 10px !important;
    }
    
    .dashboard-header h1 {
        font-size: 1.5rem !important;
    }
    
    .stat-value {
        font-size: 2rem !important;
    }
    
    .stat-card,
    .content-card,
    .goal-card,
    .chart-card {
        padding: 15px 10px;
    }
    
    .btn,
    .button {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Compatibilité avec Blocksy - Forcer la largeur complète */
.ct-container .prospection-dashboard-front,
.entry-content .prospection-dashboard-front,
.entry-content,
.ct-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Annuler toutes les contraintes de largeur - Règles très agressives */
.prospection-layout-wrapper .ct-container,
.prospection-layout-wrapper .entry-content,
.prospection-content-inner .ct-container,
.prospection-content-inner .entry-content,
.prospection-layout-wrapper .ast-container,
.prospection-content-inner .ast-container,
.prospection-layout-wrapper .wp-block-group__inner-container,
.prospection-content-inner .wp-block-group__inner-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Forcer la largeur sur tous les éléments enfants */
.prospection-content-inner .prospection-dashboard-front,
.prospection-content-inner .prospection-dashboard-front * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Annuler les marges Blocksy/WordPress sur les titres */
.prospection-dashboard-front h1,
.prospection-dashboard-front h2,
.prospection-dashboard-front h3,
.prospection-dashboard-front h4,
.prospection-dashboard-front h5,
.prospection-dashboard-front h6 {
    margin-block-end: 0 !important;
    margin-bottom: 0 !important;
}

/* Annuler les styles Blocksy sur les titres dans le dashboard */
.is-layout-flow .prospection-dashboard-front h1,
.is-layout-constrained .prospection-dashboard-front h1,
.is-layout-flow .prospection-dashboard-front h2,
.is-layout-constrained .prospection-dashboard-front h2 {
    margin-block-end: 0 !important;
    margin-bottom: 0 !important;
}

/* WordPress admin notices compatibility */
.prospection-dashboard-front .notice {
    padding: 16px 20px;
    margin: 0 0 12px 0;
    border-left-width: 4px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-right: 40px;
}

.prospection-dashboard-front .notice.notice-success {
    border-left-color: #11998e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.prospection-dashboard-front .notice.notice-error {
    border-left-color: #d63638;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.prospection-dashboard-front .notice.notice-warning {
    border-left-color: #f6c23e;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.prospection-dashboard-front .notice.notice-info {
    border-left-color: #667eea;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

/* Bouton de fermeture pour les notifications */
.prospection-dashboard-front .notice.is-dismissible .notice-dismiss,
.prospection-dashboard-front .notification-item .notice-dismiss {
    position: absolute;
    top: 0;
    right: 1px;
    border: none;
    margin: 0;
    padding: 9px;
    background: none;
    color: #787c82;
    cursor: pointer;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prospection-dashboard-front .notice.is-dismissible .notice-dismiss:hover {
    color: #1d2327;
}

.prospection-dashboard-front .notice.is-dismissible .notice-dismiss::before {
    content: "\f153";
    font-family: dashicons;
    font-size: 16px;
    line-height: 1;
}

/* S'assurer que le bouton dismiss est visible et fonctionnel */
.prospection-dashboard-front .notification-item .notice-dismiss {
    position: absolute !important;
    top: 0 !important;
    right: 1px !important;
    border: none !important;
    margin: 0 !important;
    padding: 9px !important;
    background: none !important;
    color: #787c82 !important;
    cursor: pointer !important;
    z-index: 1 !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.prospection-dashboard-front .notification-item .notice-dismiss:hover {
    color: #1d2327 !important;
}

.prospection-dashboard-front .notification-item .notice-dismiss::before {
    content: "\f153" !important;
    font-family: dashicons !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.prospection-dashboard-front .notice.is-dismissible .notice-dismiss .screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Bandeau supérieur type WordPress admin bar sur le front */
.prospection-top-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #1d2327;
    color: #f0f0f1;
    height: 46px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.prospection-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 46px;
    box-sizing: border-box;
}

.prospection-top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.prospection-top-bar-logo {
    color: #f0f0f1;
}

.prospection-top-bar-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(240, 240, 241, 0.2);
}

.prospection-status-item {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 3px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.prospection-status-item:hover {
    opacity: 0.9;
    text-decoration: none;
}

.prospection-status-complete {
    color: #46b450;
    background: rgba(70, 180, 80, 0.15);
    border: 1px solid rgba(70, 180, 80, 0.3);
}

.prospection-status-incomplete {
    color: #dc3232;
    background: rgba(220, 50, 50, 0.15);
    border: 1px solid rgba(220, 50, 50, 0.3);
}

.prospection-status-active {
    color: #46b450;
    background: rgba(70, 180, 80, 0.15);
    border: 1px solid rgba(70, 180, 80, 0.3);
}

.prospection-status-paused {
    color: #dc3232;
    background: rgba(220, 50, 50, 0.15);
    border: 1px solid rgba(220, 50, 50, 0.3);
}

.prospection-top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.prospection-top-bar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.prospection-top-bar-avatar img {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: block;
}

.prospection-top-bar-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.prospection-top-bar-hello {
    font-size: 11px;
    color: #b3b9c0;
}

.prospection-top-bar-name {
    color: #f0f0f1;
    text-decoration: none;
    font-weight: 600;
}

.prospection-top-bar-name:hover {
    text-decoration: underline;
}

.prospection-top-bar-logout {
    color: #b3b9c0;
    text-decoration: none;
    font-size: 12px;
    margin-left: 10px;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid rgba(240, 240, 241, 0.2);
}

.prospection-top-bar-logout:hover {
    color: #fff;
    border-color: rgba(240, 240, 241, 0.4);
    background: rgba(240, 240, 241, 0.08);
}

@media (max-width: 768px) {
    .prospection-top-bar-inner {
        padding: 0 10px;
    }
    .prospection-top-bar-user-info {
        display: none;
    }
    .prospection-top-bar-logout {
        font-size: 11px;
        padding: 3px 6px;
    }
    .prospection-top-bar-status {
        margin-left: 10px;
        padding-left: 10px;
        gap: 8px;
    }
    .prospection-status-item {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 600px) {
    .prospection-top-bar-status {
        display: none;
    }
}

/* Styles pour le nouveau tableau de bord */
.dashboard-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4) !important;
}

.dashboard-action-btn:hover {
    background: #e9ecef !important;
    border-color: #2271b1 !important;
    color: #2271b1 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Carte statistique cliquable */
.stat-card-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
