/*
==============================================
PROPRIETAIRESBAILLEURS.COM - STYLESHEET MODERNE
==============================================
Version responsive et moderne du site
Palette de couleurs: #98A234, #BAC356, #E0EB67
==============================================
*/

/* === RESET ET BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Franklin Gothic Medium', Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    line-height: 1.6;
}
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
body::before {
	content: "";
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background: url('Copilot_20250823_182752.png') repeat-x center center;
	background-size: cover;
	z-index: -1;
	animation: scrollBackground 60s linear infinite;
	pointer-events: none;
	opacity: 0.6;
  	filter: brightness(0.6) blur(1px);
}
@keyframes scrollBackground {
  from { background-position-x: 0; }
  to { background-position-x: -2000px; }
}
/* === CONTAINER PRINCIPAL === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Large container for management pages */
.container.large {
    max-width: 1400px;
}
/* === SIDEBAR === */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #98A234 0%, #BAC356 100%);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: 70px;
}
.mobile-title {
    display: none;
    text-align: center;
    font-size: 1.5em;
    margin-top: 10px;
}
/* Tootip Mot de passe */
.tooltippwd {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    margin: 10px;
    background: linear-gradient(135deg, #BAC356, #E0EB67);
    color: #333;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.tooltippwd[style*="visible"] {
    transform: translateY(0);
    pointer-events: auto !important;
}
/* Gestion du champ mot de passe */
.password-container {
  position: relative;
  width: 100%;
}
.password-container input {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}
.toggle-password {
  position: absolute;
  top: 63px;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2em;
  user-select: none;
}
/* Logo */
.logo {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    margin-left: -10px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.logo-icon::before {
    content: "🏠";
    font-size: 30px;
}

.logo h1 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .logo h1 {
    opacity: 0;
}

/* Navigation */
.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link.active {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.nav-text {
    transition: opacity 0.3s ease;
}

.mobile-menu-btn {
	display: none;
}
.sidebar.collapsed .nav-text {
    opacity: 0;
    width: 0;
}

.sidebar.collapsed .nav-link {
    justify-content: center;
}

.sidebar.collapsed .nav-icon {
    margin-right: 0;
}

/* Partenaires */
.partners {
    margin-top: 40px;
}

.partners h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-item {
    margin-bottom: 15px;
    text-align: center;
}

.partner-link {
    display: inline-block;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.partner-link:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* === MAIN CONTENT === */
.main-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: linear-gradient(135deg, #98A234 0%, #BAC356 100%);
    color: #fff;
    padding: 30px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -10px) rotate(180deg); }
}

.header h2 {
    font-size: 34px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Content Area */
.content {
    padding: 40px;
    flex: 1;
}

.page-title {
    color: #98A234;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #BAC356;
    border-radius: 2px;
}

/* === FORMULAIRES === */
.form-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 4px solid #98A234;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-section h3 {
    color: #98A234;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.form-section h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #BAC356;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  	gap: 10px;
  	position: relative;
}

/* Style du lien avec image */
.download-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
  font-size: 14px;
}
.download-link:hover {
  text-decoration: underline;
}
/* Style du lien d'une icone */
.icone-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
  font-size: 14px;
}
/* Style de l'icône PDF */
.pdf-icon {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
.site-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
.site-image img {
  max-width: 200px;
  height: auto;
  border-radius: 6px;
}
.site-content {
  display: flex;
  flex: 1;
  min-width: 200px;
  flex-direction: column;
  gap: 5px;
}
.site-content p {
  	font-size: 14px;
    font-family: Arial, sans-serif;
}
.site-content ul {
  	font-size: 14px;
    font-family: Arial, sans-serif;
    margin-left: 15px;
}

.form-group label {
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-group label::before {
    content: '•';
    color: #98A234;
    font-weight: bold;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #98A234;
    box-shadow: 0 0 0 3px rgba(152, 162, 52, 0.1);
}
.form-group .ql-toolbar {
    border-bottom: 2px solid #e9ecef;
  	border-radius: 8px 8px 0 0;
}
.form-group .ql-editor {
  	padding: 12px 15px;
  	border: 2px solid #e9ecef;
  	border-radius: 8px;
  	font-size: 14px;
  	transition: all 0.3s ease;
  	font-family: inherit;
  	min-height: 250px;
	max-height: 250px;
	overflow-y: auto;
	border: 1px solid #ccc;
}

.form-group .ql-container:focus-within .ql-editor {
  border-color: #98A234;
  box-shadow: 0 0 0 3px rgba(152, 162, 52, 0.1);
  outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

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

/* === GESTION DES COMPTES === */
.management-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.management-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 4px solid #98A234;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-title {
    color: #98A234;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #BAC356;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

/* Filtres */
.filters {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: bold;
    color: #555;
}

.filter-group select {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #98A234;
    box-shadow: 0 0 0 3px rgba(152, 162, 52, 0.1);
}

/* Stats */
.stats {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    color: #333;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.pagination a {
    padding: 8px 12px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.pagination a:hover,
.pagination a.active {
    background: #98A234;
    color: #fff;
    border-color: #98A234;
}

/* Tableau */
.table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
	
/* === TABLEAU RESPONSIVE === */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 10px;
  margin-top: 15px;
  overflow: hidden;
}
.responsive-table th {
  background: linear-gradient(135deg, #98A234 0%, #BAC356 100%);
  color: #fff;
  padding: 15px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.responsive-table td {
  	padding: 12px 10px;
  	text-align: center;
  	border-bottom: 1px solid #e9ecef;
  	font-size: 13px;
}
.responsive-table tr:hover td {
  	background: #f8f9fa;
}
.responsive-table tr:nth-child(even) {
  	background: #fafbfc;
}
.responsive-table tr.highlight-row td {
  	background-color: #fbeaea !important;
}
.image-row {
	margin-top: 25px;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	width: 100%; /* ou une largeur fixe si tu préfères */
}
.image-row a img {
  	max-width: 100px; /* ajuste selon la taille souhaitée */
  	height: auto;
}
.actions {
	display: flex;
	gap: 10px;
	align-items: center;
}
.actions img {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}
.actions img:hover {
 transform: scale(1.2);
}

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

.accounts-table th {
    background: linear-gradient(135deg, #98A234 0%, #BAC356 100%);
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #88922A;
}

.accounts-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px;
    transition: background 0.3s ease;
}

.accounts-table tr:hover td {
    background: #f8f9fa;
}

.accounts-table tr:nth-child(even) {
    background: #fafbfc;
}

/* Statuts colorÃ©s */
.status-active { 
    color: #28a745; 
    font-weight: bold; 
}

.status-inactive { 
    color: #dc3545; 
    font-weight: bold; 
}

.status-pending { 
    color: #ffc107; 
    font-weight: bold; 
}

/* Actions */
.actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.action-mail { background: #17a2b8; color: #fff; }
.action-write { background: #007bff; color: #fff; }
.action-view { background: #28a745; color: #fff; }
.action-delete { background: #dc3545; color: #fff; }

/* === BOUTONS === */
.btn {
    background: linear-gradient(135deg, #98A234 0%, #BAC356 100%);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(152, 162, 52, 0.3);
}

.btn-small {
    background: linear-gradient(135deg, #98A234 0%, #BAC356 100%);
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    margin-left: 15px;
}
.btn-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-small:hover::before {
    width: 300px;
    height: 300px;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(152, 162, 52, 0.3);
}

/* Boutons d'action */
.action-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    font-size: 14px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-title {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
}

.menupagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menupagination a {
    padding: 6px 10px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.menupagination a:hover {
    background: #98A234;
    color: #fff;
    border-color: #98A234;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(152, 162, 52, 0.2);
}

.menupagination a.active {
    background: #98A234;
    color: #fff;
    border-color: #98A234;
}
.menupagination a#nolink {
    background: transparent;
    color: #999;
    cursor: default;
    border: none;
    font-weight: normal;
    pointer-events: none;
    box-shadow: none;
    transition: none;
    padding: 8px 14px;
    font-size: 14px;
}

/* === ERREURS === */
.error {
    background: #fff5f5;
    color: #e53e3e;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
    margin-bottom: 20px;
}
.info {
    background: #f5f5ff;
    color: #3e3ee5;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3e3ee5;
    margin-bottom: 20px;
}

/* === FOOTER === */
.footer {
    background: #2d3748;
    color: #a0aec0;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}


/* === ENTÊTE PERSONNALISÉE === */
.home-header {
    background: linear-gradient(135deg, #98A234 0%, #BAC356 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.home-header .highlight {
    color: #E0EB67;
}

.home-header p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Panneaux de slogans */
.slogan-panels {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px auto;
    padding: 0 20px;
}
.slogan-panel {
	background: linear-gradient(135deg, #A8E6CF, #F0FFF4);
	color: #2E7D32;
	padding: 20px;
	border-radius: 15px;
	width: 280px;
	font-size: 1.1rem;
	font-weight: bold;
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
	line-height: 1.5;
}
.slogan-icon {
	float: left;
	font-size: 2.5rem;
	margin-right: 12px;
	margin-bottom: 8px;
	opacity: 0.9;
}
.panel-1 {
	background: linear-gradient(135deg, #A8E6CF, #F0FFF4);
	color: #2E7D32;
}
.panel-1 a {
	text-decoration: none;
	color: inherit;
}
.panel-2 {
	background: linear-gradient(135deg, #90CAF9, #ECEFF1);
	color: #0D47A1;
}
.panel-2 a {
	text-decoration: none;
	color: inherit;
}
.panel-3 {
	background: linear-gradient(135deg, #FFCC80, #FFEBEE);
	color: #D84315;
}
.panel-3 a {
	text-decoration: none;
	color: inherit;
}
.slogan-panel:hover {
    transform: translateY(-5px);
}
.intro-text {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 10px;
    font-size: 1.0rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* === MOBILE === */
@media (max-width: 1200px) {
    .mobile-title {
        display: block;
        font-size: 20px;
    }
    .sidebar .logo h1 {
        display: none;
    }
    .home-header h2 {
        font-size: 24px;
    }

    .home-header p {
        font-size: 16px;
    }

    .slogan-panel {
        width: 90%;
    }

    .intro-text {
        font-size: 1rem;
    }
    .container {
        flex-direction: column;
    }
    .sidebar {
	    overflow-y: auto;
	    -webkit-overflow-scrolling: touch; 
    	width: 75%;
    	max-width: 768px;
        position: fixed;
        top: 0;
        left: -75%;	
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
    }
    .sidebar.active {
        left: 0;
    }
    .overlay.active {
	    left: 75%;
	    width: 25%;
	}
    .sidebar.collapsed {
        width: 100%;
    }
    .main-content {
        margin-top: 0;
    }
    .mobile-menu-btn {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: #98A234;
        color: #fff;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    .content {
        padding: 20px;
    }
	.header h2 {
	    font-size: 28px;
	}	
	.header p {
	    font-size: 16px;
	}
    .header {
        padding: 60px 20px 20px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-container {
        padding: 20px;
    }
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    .action-buttons {
        flex-direction: column;
    }
    .accounts-table {
        font-size: 11px;
    }
    .accounts-table th,
    .accounts-table td {
        padding: 8px 5px;
    }

    .actions {
        flex-direction: column;
        gap: 5px;
    }

    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }  
    
	.responsive-table thead {
	  display: none;
	}

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    background: #fff;
    padding: 10px;
  }

  .responsive-table td {
    text-align: left;
    padding: 10px;
    border: none;
    position: relative;
  }

  .responsive-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #98A234;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
  }
  
    .menupagination a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
	.menu-toggle {
	  display: none;
	}
}

/* Overlay pour mobile */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === ANIMATIONS === */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-in {
    animation: slideIn 0.8s ease-out;
}

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

/* === UTILITAIRES === */
.center {
    text-align: center;
}

.centererror {
    text-align: center;
    color: #FF0000;
}

.bold {
    font-weight: bold;
}

.clearboth {
    clear: both;
}