:root {
    --primary-color: #008000ff;
    --primary-dark: #008000d3;
    --success-color: #008000d3;
    --error-color: #e74c3c;
    --remove-color: #a1190a;
    --info-color: #3498db;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --background: #fffbf0;
}

/* Featured Professionals Section */
body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: var(--background);
    line-height: 1.6;
    color: var(--text-color);
}

/* Swiper Pagination Customization */
header {
    background-color: transparent;
    padding: 1rem;
}

/* Swiper Navigation Customization */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Professional Profile Page Styles */
.logo img {
    height: 120px;
    width: auto;
}

/* Search Section Styles */
.header-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Tagify custom styles - keeping existing theme */
.pro-button,.auth-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    min-width: 180px;
    transition: background-color 0.3s ease;
}

/* Responsive adjustments */
.pro-button {
    background-color: var(--primary-color);
    color: white;
}

/* Search form responsive styles */
.pro-button:hover {
    background-color: var(--primary-dark);
}

/* Professional Page Styles */
.auth-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Responsive adjustments */
.auth-button:hover {
    background-color: var(--background);
}

/* Partner Banner Styles */
.featured-pros {
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
    background: var(--background);
}

/* Modal Styles */
.featured-pros h2,.search-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* État par défaut */
.mySwiper {
    width: 100%;
    padding-bottom: 3rem;
}

/* Classe pour l'état visible de la modale */
.swiper-slide {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 300px;
    height: 400px;
    transition: transform 0.3s;
}

/* Centre la modale */
.swiper-slide-active {
    transform: scale(1.05);
}

/* Évite que la modale soit plus grande que la fenêtre */
.pro-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

/* Permet le défilement si le contenu est trop long */
.pro-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Ajustements pour les petits écrans */
.pro-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: white;
    flex: 1;
}

/* Style spécifique pour le formulaire de devis dans la modale */
.pro-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

/* Style pour la scrollbar du formulaire */
.pro-card.location {
    color: var(--light-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* User Menu Styles */
.pro-card.field {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

/* Profile Page Styles */
.view-profile-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

/* Admin Page Styles */
.view-profile-btn:hover {
    background-color: var(--primary-dark);
}

/* Sous-onglets de configuration */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.5;
}

/* Ajustement du header */
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Edit Profile Page Styles */
.swiper-button-next,.swiper-button-prev {
    color: var(--primary-color);
}

/* Configuration Entreprise Page Styles */
.pro-header {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

/* Styles pour les créneaux */
.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive adjustments */
.back-link:hover {
    color: var(--primary-color);
}

/* Toast Notification */
.loading,.error {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
}

/* Styles pour la modale d'édition d'entreprise */
.error {
    color: #dc3545;
}

/* Services list styles - Company Config */
.pro-header-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Company Profile Page Styles */
.pro-main-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

/* Statistics Styles */
.pro-main-info {
    flex: 1;
    flex-grow: 1;
}

/* Scrollbar styles for the lists */
.pro-main-info h1 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Styles pour les badges de mise en avant */
.pro-footer-availability {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Styles pour les badges RGPD */
.pro-details {
    display: grid;
    flex-direction: column;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 1.5rem;
}

/* Styles pour les badges de type d'utilisateur */
.pro-details > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

details > summary::-webkit-details-marker {
    display: none;
}

details > summary {
    cursor: zoom-in;
    list-style: none;
}


/* Modified: 05/01/2025 17:04 */
.pro-description,.pro-contact {
    margin-bottom: 2rem;
}

/* Styles pour les messages toast */
.pro-description h2,.pro-contact h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Styles pour la modale d'édition d'entreprise */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Modified: 05/01/2025 18:03 */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Styles pour les badges de mise en avant */
.contact-item a {
    color: #2980b9;
    text-decoration: none;
}

/* Modified: 05/01/2025 18:30 */
.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Styles pour les badges de statut */
.search-section {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.search-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.filter-group {
    width: 100%;
}

/* Responsive design */
.filter-group h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

/* Responsive adjustments */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.checkbox-item label {
    cursor: pointer;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.search-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* État par défaut */
.search-button:hover {
    background: var(--primary-dark);
}

/* Classe pour l'état visible de la modale */
.search-results {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Centre la modale */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Évite que la modale soit plus grande que la fenêtre */
.tagify {
    --tags-border-color: #ddd;
    --tags-hover-border-color: var(--primary-color);
    --tags-focus-border-color: var(--primary-color);
    --tag-bg: var(--primary-color);
    --tag-hover: var(--primary-dark);
    --tag-text-color: white;
    --tag-border-radius: 4px;
    background: white;
    padding: 0.5rem;
    border: none;
    width: 100%;
}

/* Permet le défilement si le contenu est trop long */
.tagify__tag {
    margin: 2px 4px;
    display: inline-flex;
}

/* Styles spécifiques pour la modale de devis */
.tagify__input {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 100%;
}

/* Styles spécifiques pour la modale d'authentification */
.tagify__tag-text {
    white-space: nowrap;
}

/* Ajustements pour les petits écrans */
.tagify__tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
    width: 100%;
}

/* Services list styles */
.tagify__input-wrapper {
    width: 100%;
}

/* Services */
.tagify__dropdown {
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: max-content;
    min-width: 100%;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.tagify__dropdown__wrapper {
    width: max-content;
    min-width: 100%;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.tagify__dropdown__item {
    white-space: nowrap;
    padding: 0.5rem 1rem;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.tagify__dropdown__item--active {
    background: var(--primary-color);
    color: white;
}

/* Responsive design */
.tagify__tag__removeBtn {
    color: white;
    opacity: 0.75;
    margin-left: 4px;
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.tagify__tag__removeBtn:hover {
    opacity: 1;
    background: none;
}

/* Responsive adjustments */
.pro-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(0, 128, 0, 0.05), rgba(0, 128, 0, 0.1));
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.hero-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* État par défaut */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Classe pour l'état visible de la modale */
.primary-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Centre la modale */
.primary-button:hover {
    background-color: var(--primary-dark);
}

/* Évite que la modale soit plus grande que la fenêtre */
.secondary-button {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Permet le défilement si le contenu est trop long */
.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Styles spécifiques pour la modale de devis */
.pro-benefits {
    padding: 4rem 2rem;
}

/* Styles spécifiques pour la modale d'authentification */
.pro-benefits h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Ajustements pour les petits écrans */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services list styles */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

/* Services */
.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.pro-stats {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    color: white;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.stat-item {
    text-align: center;
}

/* Responsive design */
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.stat-label {
    font-size: 1.1rem;
}

/* Responsive adjustments */
.partner-banner {
    background-color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    width: 100%;
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.partner-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.partner-logo {
    height: 30px;
    width: auto;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.partner-link:hover {
    text-decoration: underline;
}

/* État par défaut */
.modal {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Classe pour l'état visible de la modale */
.modal.visible {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Centre la modale */
.modal-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 2rem;
    margin: 10vh auto;
    max-height: 90vh;
    overflow-y: auto;
}

/* Évite que la modale soit plus grande que la fenêtre */
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}

/* Permet le défilement si le contenu est trop long */
.close-modal:hover {
    color: #333;
}

/* Styles spécifiques pour la modale de devis */
.modal h2 {
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    padding-right: 2rem;
}

/* Styles spécifiques pour la modale d'authentification */
.quote-form {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Ajustements pour les petits écrans */
.quote-form::-webkit-scrollbar {
    width: 8px;
}

/* Services list styles */
.quote-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

/* Services */
.quote-form::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.quote-form::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.user-menu-container {
    position: relative;
    display: inline-block;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.user-menu-button {
    background-color: transparent;
    min-width: 180px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Responsive design */
.user-menu-button:hover {
    background-color: var(--background);
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.user-menu {
    position: absolute;
    top: 100%;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 100;
    display: none;
    margin-top: 0.5rem;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
.user-menu.active {
    display: block;
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.user-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.user-menu-header h3 {
    color: var(--text-color);
    font-size: 1rem;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.user-menu-header p {
    margin: 0.25rem 0 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* État par défaut */
.user-menu-items {
    padding: 0.5rem 0;
}

/* Classe pour l'état visible de la modale */
.user-menu-item {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    margin: 0 auto;
}

/* Centre la modale */
.user-menu-item:hover {
    background-color: var(--background);
}

/* Évite que la modale soit plus grande que la fenêtre */
.user-menu-item svg {
    width: 18px;
    height: 18px;
}

/* Permet le défilement si le contenu est trop long */
.user-menu-item.danger {
    color: var(--error-color);
}

/* Styles spécifiques pour la modale de devis */
.user-menu-item.danger:hover {
    background-color: #fff5f5;
}

/* Styles spécifiques pour la modale d'authentification */
.profile-page {
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Ajustements pour les petits écrans */
.profile-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Services list styles */
.profile-container h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Services */
.form-section {
    margin-bottom: 20px;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f7f7f7;
    border: 1px solid #ddd;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.form-section:last-child {
    border-bottom: none;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.form-section h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive design */
.form-group input {
    width: calc(100%-20px);
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.form-group img {
    width: calc(100% - 20px);
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive adjustments */
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 128, 0, 0.1);
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.form-actions {
    margin-top: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.save-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.save-button:hover {
    background-color: var(--primary-dark);
}

/* État par défaut */
.profile-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

/* Classe pour l'état visible de la modale */
.profile-message.success {
    background-color: var(--success-color);
    color: white;
}

/* Centre la modale */
.profile-message.error {
    background-color: var(--error-color);
    color: white;
}

/* Évite que la modale soit plus grande que la fenêtre */
.admin-page {
    padding: 2rem;
}

/* Permet le défilement si le contenu est trop long */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles spécifiques pour la modale de devis */
.admin-container h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Styles spécifiques pour la modale d'authentification */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

/* Ajustements pour les petits écrans */
.tab-button {
    padding: 0.8rem 1.5rem;
    border: none;
    background: none;
    color: var(--light-text);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

/* Services list styles */
.tab-button.active {
    color: var(--primary-color);
}

/* Services */
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.tab-content {
    display: none;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.tab-content.active {
    display: block;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Responsive design */
.add-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.add-button:hover {
    background-color: var(--primary-dark);
}

/* Responsive design */
.remove-button {
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--remove-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 20px;
}


/* Responsive adjustments */
.search-bar {
    margin-bottom: 1.5rem;
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.search-bar input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.table-container {
    overflow-x: auto;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

/* État par défaut */
.admin-table th,.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

/* Classe pour l'état visible de la modale */
.admin-table th {
    background-color: var(--background);
    font-weight: 500;
    color: var(--text-color);
}

/* Centre la modale */
.admin-table tbody tr:hover {
    background-color: var(--background);
}

/* Évite que la modale soit plus grande que la fenêtre */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Permet le défilement si le contenu est trop long */
.action-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem;
    border-radius: 6px;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Styles spécifiques pour la modale de devis */
.action-button.view {
    background-color: var(--primary-color);
    color: white;
}

/* Styles spécifiques pour la modale d'authentification */
.action-button.view:hover {
    background-color: var(--primary-dark);
}

/* Ajustements pour les petits écrans */
.action-button:hover {
    opacity: 0.9;
}

/* Services list styles */
.action-button[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    margin-bottom: 5px;
}

/* Services */
.action-button.edit {
    background-color: var(--info-color);
    color: white;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.action-button.delete {
    background-color: var(--error-color);
    color: white;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.stat-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

/* Responsive design */
.stat-title {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Modified: 06/01/2025 22:46 - Updated availability display */
.stat-value {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
.stat-subtitle {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Modified: 06/01/2025 22:56 - Quote Modal Styles */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Modified: 06/01/2025 23:32 - Styles pour les informations utilisateur */
.admin-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
}

/* Modified: 06/01/2025 23:39 - Styles unifiés pour toutes les modales */
.admin-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

/* État par défaut */
.admin-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 128, 0, 0.1);
}

/* Classe pour l'état visible de la modale */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Centre la modale */
.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Évite que la modale soit plus grande que la fenêtre */
.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Permet le défilement si le contenu est trop long */
.submit-button:hover {
    background-color: var(--primary-dark);
}

/* Styles spécifiques pour la modale de devis */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Styles spécifiques pour la modale d'authentification */
.status-badge.verified,.status-badge.processed,.status-badge.confirmed {
    background-color: var(--success-color);
    color: white;
}

/* Ajustements pour les petits écrans */
.status-badge.pending {
    background-color: #f39c12;
    color: white;
}

/* Services list styles */
.status-badge.deactivated,.status-badge.canceled {
    background-color: var(--remove-color);
    color: white;
}

/* Services */
.config-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Modified: 06/01/2025 14:42 - Added WhatsApp button styles */
.config-tab-button {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Modified: 06/01/2025 15:27 - Added company quotes management styles */
.config-tab-button:hover {
    background-color: #f5f5f5;
    color: #333;
}

/* Modified: 06/01/2025 15:41 - Added quotes card layout styles */
.config-tab-button.active {
    background-color: var(--primary-color);
    color: white;
}

.config-tab-content {
    display: none;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.config-tab-content.active {
    display: block;
}

#config.content-header {
    margin-bottom: 20px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-header h1 {
    color: var(--primary-color);
}

.view-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.view-button:hover {
    text-decoration: none;
    background-color: var(--primary-dark);
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    grid-gap: 20px;
}

.jour-horaires {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.horaires-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.horaires-inputs input[type="time"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.periodes-list {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.availability-period {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    position: relative;
    width: 180px;
    background-color: #f8f9fa;
}

.availability-period h5 {
    color: var(--primary-color);
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.delete-btn:hover {
    background-color: var(--primary-dark);
}

.error-message {
    background-color: #fee;
    color: var(--error-color);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.horaires-inputs input {
    width: 100px;
    margin: 0 10px;
}

#periodes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slots-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    top: 20px;
}

.toast {
    background-color: #751515;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    animation: slideIn 0.3s ease-out;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #4CAF50;
    background-color: #00875a;
}

.toast-error {
    border-left: 4px solid #f44336;
    background-color: #e6193c;
}

.toast-info {
    border-left: 4px solid #0052cc;
    background-color: #0052cc;
}

.company-info {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.company-info.company-name {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.company-info.company-details {
    color: #6c757d;
    line-height: 1.5;
}

.company-config.services-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-config.service-item {
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.company-config.service-item:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.company-config.service-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.company-config.service-input {
    margin-top: 0.25rem;
}

.company-config.service-content {
    flex: 1;
}

.company-config.service-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.company-config.service-description {
    font-size: 0.9em;
    color: #6c757d;
}

.pro-profile {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.pro-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge.featured {
    background-color: #fdf2f8;
    color: #be185d;
}

.badge.boosted {
    background-color: #eff6ff;
    color: #1e40af;
}

.badge.verified {
    background-color: #2ecc71;
    color: #fff;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.detail-item i {
    color: #2ecc71;
    width: 20px;
}

.pro-availability h2 {
    color: var(--primary-color);
}

.pro-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pro-content-grid section {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pro-content-grid h2 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pro-content-grid h2 i {
    color: #2ecc71;
}

.contact-item i {
    color: #2ecc71;
    width: 20px;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-grid.day-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 0.5rem;
    border-radius: 4px;
}

.hours-grid.day-row:nth-child(odd) {
    background-color: #f8f9fa;
}

.hours-grid.day-name {
    font-weight: 500;
    color: #2c3e50;
}

.availability-period.period-date {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.availability-period.slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.availability-period.slot {
    background-color: #2ecc71;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.stats-section {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-section h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stats-list-container {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list.timeline li {
    color: #2c3e50;
    font-size: 0.9rem;
}

.stats-list-container::-webkit-scrollbar {
    width: 8px;
}

.stats-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.stats-list-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.stats-list-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.highlight-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.highlight-badge.highlighted {
    background-color: #ffd700;
    color: #000;
}

.highlight-badge.standard {
    background-color: #e9ecef;
    color: #6c757d;
}

.rgpd-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.rgpd-badge.validated {
    background-color: #e3fcef;
    color: #166534;
}

.rgpd-badge.pending {
    background-color: #fff7ed;
    color: #9a3412;
}

.user-type-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    min-width: 100px;
}

.user-type-badge.administrateur {
    background-color: #0052cc;
    color: white;
}

.user-type-badge.professionnel {
    background-color: #00875a;
    color: white;
}

.user-type-badge.particulier {
    background-color: #6554c0;
    color: white;
}

.featured-featured {
    background-color: #fdf2f8;
    color: #be185d;
}

.featured-boosted {
    background-color: #eff6ff;
    color: #1e40af;
}

.featured-standard {
    background-color: #f3f4f6;
    color: #6b7280;
}

.status-badge.validé {
    background-color: #dcfce7;
    color: #166534;
}

.status-badge.en-attente {
    background-color: #fff7ed;
    color: #9a3412;
}

.status-badge.desactivé {
    background-color: #fef2f2;
    color: #991b1b;
}

.action-button.whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-button.whatsapp:hover {
    background-color: #128C7E;
}

.client-info {
    cursor: help;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.client-info:hover {
    background-color: #f5f5f5;
}

.quotes-section {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.quotes-section.section-header {
    margin-bottom: 1.5rem;
}

.quotes-section.section-header h2 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.status-select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.status-select option[value="pending"] {
    color: #ff9800;
}

.status-select option[value="accepted"] {
    color: #4caf50;
}

.status-select option[value="rejected"] {
    color: #f44336;
}

.action-button.call {
    background-color: #4CAF50;
    color: white;
}

.action-button.email {
    background-color: #2196F3;
    color: white;
}

.action-button.call:hover {
    background-color: #388E3C;
}

.action-button.email:hover {
    background-color: #1976D2;
}

.quotes-page {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quotes-container {
    width: 100%;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header h1 {
    color: #2c3e50;
}

.quotes-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.quote-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.quote-datetime {
    color: #2c3e50;
    font-weight: 500;
}

.quote-datetime i {
    margin-right: 0.5rem;
    color: #666;
}

.quote-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.quote-status.pending {
    background-color: #fff7ed;
    color: #9a3412;
}

.quote-status.processed {
    background-color: #ecfdf5;
    color: #166534;
}

.quote-client-info {
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 6px;
}

.client-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.client-details {
    display: none;
    font-size: 0.875rem;
    color: #666;
}

.quote-client-info:hover.client-details {
    display: block;
}

.client-details div {
    margin-top: 0.5rem;
}

.client-details i {
    width: 1.5rem;
    color: #666;
}

.quote-description {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.quote-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.action-button i {
    font-size: 1rem;
}

.action-button.process {
    background-color: #9333ea;
    color: white;
}

.action-button.process:hover {
    background-color: #7e22ce;
}

.empty-message {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    font-style: italic;
    background: #f8fafc;
    border-radius: 8px;
}

.availability-grid {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.availability-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.availability-date {
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: white;
    border-bottom: 1px solid #e2e8f0;
}

.availability-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.slot-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.slot-title {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.slot-button {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.slot-button:hover {
    background-color: var(--primary-dark);
}

.slot-button:disabled {
    background-color: var(--light-text);
    cursor: not-allowed;
}

.quote-form.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form label {
    font-weight: 500;
    color: var(--text-color);
}

.quote-form input,.quote-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 95%;
}

.quote-form textarea {
    resize: vertical;
    min-height: 3rem;
}

.selected-slot {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 4px;
    color: var(--text-color);
    font-weight: 500;
}

.quote-form.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.quote-form.submit-button:hover {
    background-color: var(--primary-dark);
}

.user-info {
    background-color: var(--light-bg);
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-color);
}

.form-info {
    background-color: var(--light-bg);
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.services-list {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

.services-list.service-item {
    flex: 1 1 250px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--background-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.services-list.service-item:hover {
    border-color: var(--primary-color);
    background: var(--background-color-hover);
}

.services-list.service-item.selected {
    background: var(--primary-color-light);
    border-color: var(--primary-color);
}

.services-list.service-item.service-icon {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.services-list.service-item.service-content {
    flex-grow: 1;
}

.services-list.service-item.service-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.services-list.service-item.service-description {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.service-item {
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.service-item:hover {
    background: #e9ecef;
}

.service-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    width: 100%;
}

.service-input {
    margin-top: 0.25rem;
}

.service-content {
    flex: 1;
}

.service-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.service-description {
    font-size: 0.9em;
    color: #6c757d;
}

i.fas.fa-star {
display: none;
}

i.fas.fa-star.featured {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

i.fas.fa-rocket {
    display: none;
}

i.fas.fa-rocket.boosted {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

/* Member badge styles - Added: 01/03/2025 00:35 */
.member-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.member-badge:hover {
    background-color: var(--primary-color);
    color: white;
}

.member-badge-logo {
    height: 30px;
    width: auto;
}

/* Portfolio styles - Added: 01/03/2025 00:35 */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.portfolio-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-desc {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Availability calendar styles - Added: 01/03/2025 00:35 */
.availability-calendar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.date-slots {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.date-header {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.slot-button {
    background: var(--background);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Schedule grid styles - Added: 01/03/2025 00:35 */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.schedule-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.day {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Services and zones lists - Added: 01/03/2025 00:35 */
.services-list, .zones-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-item, .zone-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Container styles - Added: 01/03/2025 00:35 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-container {
    cursor: zoom-in;
}

/* Form styles for intervention modal - Added: 01/03/2025 00:35 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-dark);
}

/* Error container styles - Added: 01/03/2025 00:35 */
.error-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Footer styles - Added: 01/03/2025 00:35 */
footer {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .tagify {
        width: 100%;
    }
    .pro-header-info {
        flex-direction: column;
    }
    .pro-main-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-height: 300px;
    }
    .search-container {
        padding: 1rem;
    }
    .search-form {
        gap: 1.5rem;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .search-form > div {
        flex-direction: column !important;
    }
    .filter-group {
        width: 100%;
    }
    .search-button {
        width: 100%;
        margin-top: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .slots-container {
        flex-direction: column;
    }
    .pro-details {
        grid-template-columns: 1fr;
    }
    .quotes-page {
        padding: 1rem;
    }
    .page-header {
        flex-direction: column;
        align-items: stretch;
    }
    .quotes-grid {
        grid-template-columns: 1fr;
    }
    .action-button span {
        display: none;
    }
    .action-button i {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .modal {
        padding: 20px 10px;
    }
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        margin: 10vh 10px;
    }
    .availability-grid {
        grid-template-columns: 1fr;
    }
    .availability-slots {
        gap: 0.25rem;
    }
    .slot-button {
        padding: 0.375rem;
    }
}

/* Styles pour les entreprises boostées */
.pro-card-boosted {
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 16px rgba(0, 128, 0, 0.15);
    position: relative;
}

.boosted-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}