/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #038C7F 0%, #026B5F 100%);
    color: white;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
}

.sidebar .logo {
    display: flex;
    align-items: center;
    padding: 30px 25px;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.1);
}

.sidebar .logo i {
    margin-right: 15px;
    font-size: 28px;
    color: #F25C05;
}

.nav-links {
    list-style: none;
    padding: 20px 0;
}

.nav-links li {
    margin: 5px 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: #F25C05;
    transform: translateX(5px);
}

.nav-links a i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-box {
    position: relative;
    width: 400px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-box input {
    width: 100%;
    padding: 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #038C7F;
    box-shadow: 0 0 0 3px rgba(3, 140, 127, 0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: #f8f9fa;
}

.user-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #F25C05;
}

.user-profile span {
    font-weight: 600;
    color: #333;
}

/* Dashboard */
.dashboard {
    padding: 30px;
}

.welcome-banner {
    background: linear-gradient(135deg, #038C7F 0%, #026B5F 100%);
    color: rgb(0, 0, 0);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100px;
    height: 100px;
    background: rgba(134, 13, 13, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.welcome-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-banner p {
    font-size: 18px;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F25C05;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
}

.stat-icon.blue { 
    background: linear-gradient(45deg, #3498db, #2e86c1); 
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.stat-icon.green { 
    background: linear-gradient(45deg, #038C7F, #026B5F);
    box-shadow: 0 5px 15px rgba(3, 140, 127, 0.3);
}
.stat-icon.orange { 
    background: linear-gradient(45deg, #F25C05, #e67e22);
    box-shadow: 0 5px 15px rgba(242, 92, 5, 0.3);
}
.stat-icon.red { 
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-info p {
    color: #7f8c8d;
    font-size: 16px;
    font-weight: 500;
}

/* Recent Activity */
.recent-activity {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #F25C05;
}

.recent-activity h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.recent-activity h2::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #038C7F, transparent);
    margin-left: 15px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.activity-item:hover {
    background: #e9ecef;
    border-left-color: #F25C05;
    transform: translateX(5px);
}

.activity-item i {
    font-size: 20px;
    margin-right: 20px;
    width: 20px;
}

.activity-item i.green { color: #038C7F; }
.activity-item i.orange { color: #F25C05; }
.activity-item i.blue { color: #3498db; }

.activity-content p {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.activity-content span {
    color: #7f8c8d;
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card {
    animation: slideIn 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Badge de notification */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #F25C05;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sidebar {
        width: 80px;
        overflow: visible;
    }
    
    .sidebar .logo span {
        display: none;
    }
    
    .nav-links a span {
        display: none;
    }
    
    .nav-links a {
        justify-content: center;
        padding: 15px;
    }
    
    .nav-links a i {
        margin-right: 0;
        font-size: 20px;
    }
    
    .main-content {
        margin-left: 80px;
    }
    
    .search-box {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 0;
        overflow: hidden;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-bar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .dashboard {
        padding: 20px;
    }
    
    .welcome-banner {
        padding: 25px;
    }
    
    .welcome-banner h1 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .stat-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .user-profile span {
        display: none;
    }
    
    .welcome-banner h1 {
        font-size: 24px;
    }
    
    .welcome-banner p {
        font-size: 16px;
    }
}

/* Buttons et éléments interactifs */
.btn {
    background: linear-gradient(45deg, #038C7F, #026B5F);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: linear-gradient(45deg, #026B5F, #038C7F);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 140, 127, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #F25C05, #e67e22);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #e67e22, #F25C05);
    box-shadow: 0 8px 20px rgba(242, 92, 5, 0.3);
}

/* Table styles pour les autres pages */
.table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-top: 30px;
    border-top: 4px solid #F25C05;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.table th {
    background: #038C7F;
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

/* Status badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active { 
    background: rgba(46, 204, 113, 0.15); 
    color: #27ae60; 
}
.status-badge.inactive { 
    background: rgba(231, 76, 60, 0.15); 
    color: #c0392b; 
}
.status-badge.pending { 
    background: rgba(241, 196, 15, 0.15); 
    color: #d35400; 
}

/* Loading spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #038C7F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cards supplémentaires pour le contenu */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border-top: 4px solid #038C7F;
}

.content-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.content-card-header h2 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #038C7F;
    box-shadow: 0 0 0 3px rgba(3, 140, 127, 0.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
    background: #038C7F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 140, 127, 0.3);
}

/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background: #2c3e50;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #038C7F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #026B5F;
}
/* Messages Flash */
.flash-messages {
    margin-bottom: 20px;
}

.flash {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 4px solid;
}

.flash-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.flash-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.flash-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

/* Formulaires */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4e73df;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}
/* Formulaires en ligne */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Text muted */
.text-muted {
    color: #6c757d !important;
    font-style: italic;
}

/* Badges de statut */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}
/* Détails */
.details-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #F25C05;
}

.detail-card.full-width {
    grid-column: 1 / -1;
}

.detail-card h3 {
    margin-top: 0;
    color: #F25C05;
    border-bottom: 2px solid #e3e6f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e3e6f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item label {
    font-weight: 600;
    color: #5a5c69;
}

.detail-item span {
    text-align: right;
}

.motif-text, .reason-text {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e3e6f0;
    margin-top: 10px;
}

.action-buttons-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Badges de statut spécifiques */
.status-badge.assignee {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.acceptee {
    background-color: #cce5ff;
    color: #004085;
}

.status-badge.refusee {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.terminee {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.annulee {
    background-color: #f8d7da;
    color: #721c24;
}

/* Texte tronqué */
.truncate-text {
    display: block;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tableau de Bord */
.welcome-banner {
    background: rgba(230, 226, 226, 0.836);
    color: #d35400;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.welcome-banner h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 700;
}

.welcome-banner p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1em;
    color: #090909;
}

.current-time {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #026B5F;
    z-index: 10;
}

.current-time i {
    font-size: 18px;
    color: #026B5F;
}

.current-time span {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Grille du dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
}

.card-header h3 {
    margin: 0;
    color: #F25C05;
    font-size: 1.3em;
}

.view-all {
    color: #026B5F;
    text-decoration: none;
    font-size: 0.9em;
}

.view-all:hover {
    color: #F25C05;
}

/* Graphiques */
.chart-card {
    grid-column: span 2;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Listes */
.top-list, .activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-item, .activity-item {
    display: flex;
    align-items: center;
    justify-content: between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.top-item:hover, .activity-item:hover {
    background: #e9ecef;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    background: #F25C05;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.top-value {
    font-weight: 600;
    color: #F25C05;
}

.badge {
    background: #F25C05;
    color: white;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
}

/* Statuts */
.status-distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: between;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-dot.assignee { background-color: #F25C05; }
.status-dot.acceptee { background-color: #026B5F; }
.status-dot.terminee { background-color: #28a745; }
.status-dot.refusee { background-color: #ff6b6b; }
.status-dot.annulee { background-color: #dc3545; }

.status-percent {
    font-weight: 600;
    color: #026B5F;
}

/* Actions rapides */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #026B5F;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: #F25C05;
    color: white;
    transform: translateY(-2px);
}

.quick-action i {
    font-size: 2em;
    margin-bottom: 10px;
}

.quick-action span {
    font-weight: 600;
    text-align: center;
}

/* Carte */
.map-card {
    grid-column: span 2;
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    color: #026B5F;
}

.map-placeholder i {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Tendances */
.stat-trend {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.stat-trend.up {
    background: rgba(242, 92, 5, 0.1);
    color: #F25C05;
}

.stat-trend.down {
    background: rgba(2, 107, 95, 0.1);
    color: #026B5F;
}

/* Icônes d'activité */
.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.reason-text{
    background-color: rgb(132, 35, 35);
    color: white;
}

.activity-icon.assignee { background: rgba(242, 92, 5, 0.1); color: #F25C05; }
.activity-icon.acceptee { background: rgba(2, 107, 95, 0.1); color: #026B5F; }
.activity-icon.terminee { background: #d4edda; color: #155724; }
.activity-icon.annulee { background: #f8d7da; color: #721c24; }

.button-actions{
    color: #026B5F;
}

/* Styles pour les nouveaux champs */
.user-phone, .user-address {
    font-size: 0.9em;
    color: #666;
}

.user-phone i, .user-address i {
    margin-right: 5px;
    color: #007bff;
}

/* Responsive pour la table */
@media (max-width: 768px) {
    .user-address {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}