/* 
 * BOUTONS PROPRES SANS PROBLÈMES D'ENCODAGE
 * Tous les boutons sont recréés depuis zéro
 */

/* ========================================
   BOUTONS HERO - SECTION PRINCIPALE
======================================== */

.hero-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.hero-button-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    display: inline-block;
}

.hero-button-text {
    display: inline-block;
    white-space: nowrap;
}

/* Bouton principal - Orange */
.hero-button-primary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    animation: heroButtonPulse 2s infinite;
}

.hero-button-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

/* Bouton secondaire - Bleu */
.hero-button-secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-button-secondary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f4e79 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

/* Bouton tertiaire - Outline */
.hero-button-tertiary {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.hero-button-tertiary:hover {
    background: #f39c12;
    color: #ffffff;
    border-color: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

@keyframes heroButtonPulse {
    0% { box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6); }
    100% { box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); }
}

/* ========================================
   BOUTONS INVESTISSEMENT
======================================== */

.investment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    margin: 0.5rem;
}

.investment-button-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    display: inline-block;
}

.investment-button-text {
    display: inline-block;
    white-space: nowrap;
}

.investment-button-primary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.investment-button-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

.investment-button-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.investment-button-secondary:hover {
    background: #3498db;
    color: #ffffff;
    border-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

/* ========================================
   BOUTONS ACTUALITÉS
======================================== */

.video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-left: 3px;
}

.video-play-button:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-text {
    margin-right: 0.5rem;
}

.read-more-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.news-read-more:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.news-read-more:hover .read-more-arrow {
    transform: translateX(3px);
}

/* ========================================
   CONTRÔLES CARROUSEL
======================================== */

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.carousel-indicator {
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.indicator-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.carousel-indicator.active .indicator-dot,
.carousel-indicator:hover .indicator-dot {
    background: #ffffff;
    transform: scale(1.2);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-arrow {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-controls-custom {
    text-align: center;
    margin-top: 1rem;
}

.carousel-pause-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #6c757d;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.pause-icon,
.play-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.pause-text {
    font-size: 0.9rem;
}

.carousel-pause-button:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.carousel-info {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .hero-buttons-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .investment-button {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-arrow {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }

    .investment-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        max-width: 260px;
    }

    .video-play-button {
        width: 50px;
        height: 50px;
    }

    .play-icon {
        font-size: 1.2rem;
    }
}

/* ========================================
   BOUTONS PAGE FLYER
======================================== */

.flyer-action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    min-height: 50px;
}

.flyer-button-icon {
    font-size: 1.2rem;
    display: inline-block;
}

.flyer-button-text {
    display: inline-block;
    white-space: nowrap;
}

.flyer-view-button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.flyer-view-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f4e79 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.flyer-download-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.flyer-download-button:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.flyer-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.flyer-cta-icon {
    font-size: 1.1rem;
}

.flyer-cta-text {
    white-space: nowrap;
}

.flyer-invest-button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.flyer-invest-button:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.flyer-register-button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.flyer-register-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f4e79 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

/* ========================================
   BOUTONS TABLEAU DE BORD
======================================== */

.dashboard-action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    color: #2c3e50;
}

.dashboard-action-icon {
    font-size: 2rem;
    display: block;
}

.dashboard-action-text {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
}

.dashboard-buy-button {
    border-color: #f39c12;
}

.dashboard-buy-button:hover {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.dashboard-news-button {
    border-color: #3498db;
}

.dashboard-news-button:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.dashboard-profile-button {
    border-color: #6c757d;
}

.dashboard-profile-button:hover {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.dashboard-support-button {
    border-color: #27ae60;
}

.dashboard-support-button:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.dashboard-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #3498db;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-button-text {
    white-space: nowrap;
}

.link-button-arrow {
    transition: transform 0.3s ease;
}

.dashboard-link-button:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.dashboard-link-button:hover .link-button-arrow {
    transform: translateX(3px);
}

.dashboard-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.cta-button-icon {
    font-size: 1.2rem;
}

.cta-button-text {
    white-space: nowrap;
}

.dashboard-cta-button:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

.dashboard-view-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #3498db;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.view-all-text {
    flex: 1;
}

.view-all-arrow {
    transition: transform 0.3s ease;
}

.dashboard-view-all-button:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.dashboard-view-all-button:hover .view-all-arrow {
    transform: translateX(3px);
}

/* ========================================
   BOUTONS ACHAT D'ACTIONS
======================================== */

.buy-shares-payment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.payment-button-icon {
    font-size: 1.2rem;
}

.payment-button-text {
    white-space: nowrap;
}

.buy-shares-payment-button:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.buy-shares-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 50px;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.submit-button-icon {
    font-size: 1.2rem;
}

.submit-button-text {
    white-space: nowrap;
}

.buy-shares-submit-button:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

.buy-shares-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   BOUTONS MODAUX
======================================== */

.modal-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #6c757d;
    z-index: 10;
}

.modal-close-button:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #dc3545;
    transform: scale(1.1);
}

.modal-footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.modal-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-button-icon {
    font-size: 1rem;
}

.modal-button-text {
    white-space: nowrap;
}

.modal-close {
    background: #6c757d;
    color: #ffffff;
}

.modal-close:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.modal-email {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.modal-email:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f4e79 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* ========================================
   BOUTONS SECTION ADMIN
======================================== */

.admin-action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.admin-action-button::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;
}

.admin-action-button:hover::before {
    left: 100%;
}

.admin-action-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.admin-action-text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

/* Boutons actions rapides - Première ligne */
.admin-users-button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.admin-users-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f4e79 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.admin-investors-button {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
}

.admin-investors-button:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.6);
}

.admin-transactions-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.admin-transactions-button:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.admin-news-button {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.admin-news-button:hover {
    background: linear-gradient(135deg, #138496 0%, #0f6674 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.6);
}

.admin-settings-button {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.admin-settings-button:hover {
    background: linear-gradient(135deg, #e0a800 0%, #c69500 100%);
    color: #212529;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.admin-reports-button {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.admin-reports-button:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.6);
}

.admin-logs-button {
    background: linear-gradient(135deg, #343a40 0%, #23272b 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(52, 58, 64, 0.4);
}

.admin-logs-button:hover {
    background: linear-gradient(135deg, #23272b 0%, #1d2124 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 58, 64, 0.6);
}

/* Boutons actions rapides - Deuxième ligne */
.admin-colors-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.admin-colors-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #8e44ad 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.admin-design-button {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: #3498db;
}

.admin-design-button:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.admin-config-button {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border-color: #6c757d;
}

.admin-config-button:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

/* ========================================
   BOUTONS FORMULAIRES ADMIN
======================================== */

.admin-form-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.admin-form-icon {
    font-size: 1rem;
}

.admin-form-text {
    white-space: nowrap;
}

.admin-primary-button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.admin-primary-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f4e79 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.admin-success-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.admin-success-button:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

.admin-info-button {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.admin-info-button:hover {
    background: linear-gradient(135deg, #138496 0%, #0f6674 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.5);
}

.admin-warning-button {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.admin-warning-button:hover {
    background: linear-gradient(135deg, #e0a800 0%, #c69500 100%);
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.admin-secondary-button {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid #6c757d;
}

.admin-secondary-button:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.admin-danger-button {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.admin-danger-button:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

/* ========================================
   BOUTONS MODAUX ADMIN
======================================== */

.admin-modal-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
    justify-content: center;
}

.admin-modal-icon {
    font-size: 1rem;
}

.admin-modal-text {
    white-space: nowrap;
}

.admin-modal-save {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
}

.admin-modal-save:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.admin-modal-cancel {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid #6c757d;
}

.admin-modal-cancel:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
}

.admin-modal-delete {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
}

.admin-modal-delete:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* ========================================
   RESPONSIVE POUR NOUVEAUX BOUTONS
======================================== */

@media (max-width: 768px) {
    .dashboard-action-button {
        padding: 1.5rem 0.75rem;
        min-height: 100px;
    }

    .dashboard-action-icon {
        font-size: 1.75rem;
    }

    .dashboard-action-text {
        font-size: 0.9rem;
    }

    .flyer-action-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .modal-footer-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .dashboard-action-button {
        padding: 1.25rem 0.5rem;
        min-height: 90px;
    }

    .dashboard-action-icon {
        font-size: 1.5rem;
    }

    .dashboard-action-text {
        font-size: 0.85rem;
    }

    .flyer-action-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .buy-shares-submit-button,
    .buy-shares-payment-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .admin-action-button {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }

    .admin-action-icon {
        font-size: 2rem;
    }

    .admin-action-text {
        font-size: 0.8rem;
    }

    .admin-form-button,
    .admin-modal-button {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}
