 /* Carte des objectifs */
.objectives-card {
    border-radius: 12px;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
}

/* En-tête du tableau */
.table-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.table-header th {
    border: none;
    font-weight: 600;
    color: #495057;
    padding: 15px;
    font-size: 0.9rem;
}

.date-column { width: 6%; }
.objective-column { width: 40%; }
.source-column { width: 20%; }
.result-column { width: 25%; }

/* Lignes du tableau */
.objectives-table {
    font-size: 0.9rem;
}

.objective-row {
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.objective-row:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.1);
}

.objective-row td {
    padding: 20px 15px;
    border: none;
    vertical-align: top;
}

/* Badge de date stylé */
.date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    border-radius: 8px;
    padding: 8px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.date-day {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2px 0;
}

.date-year {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Contenu des cellules */
.objective-content,
.source-content,
.result-content {
    line-height: 1.6;
    color: #495057;
}

.text-muted-custom {
    color: #6c757d;
    font-style: italic;
    font-size: 0.85rem;
}

/* État vide amélioré */
.empty-state {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.empty-icon {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-icon i {
    font-size: 2rem;
    color: #6c757d;
}

.empty-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-description {
    color: #6c757d;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-create {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-create:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Footer de la carte */
.card-footer {
    border-top: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .objectives-table {
        font-size: 0.8rem;
    }

    .objective-row td {
        padding: 15px 10px;
    }

    .date-badge {
        min-width: 50px;
        padding: 6px;
    }

    .date-day {
        font-size: 1rem;
    }

    .empty-state {
        padding: 40px 20px;
    }

    .empty-icon {
        width: 60px;
        height: 60px;
    }

    .empty-icon i {
        font-size: 1.5rem;
    }
}
 /* Styles pour la colonne auteur */
 .author-column {
     width: 20% !important;
     min-width: 150px;
 }

 .author-badge {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     padding: 8px;
     background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
     border-radius: 8px;
     border-left: 3px solid #0d6efd;
 }

 .author-info {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .author-info strong {
     color: #0d6efd;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .author-info small {
     color: #6c757d;
     font-size: 0.75rem;
     font-style: italic;
 }

 .author-cell {
     background-color: #f8f9ff;
     vertical-align: middle;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .author-column {
         width: auto;
     }

     .author-badge {
         flex-direction: column;
         text-align: center;
     }
 }
