.ieb-ctc-container {
    position: fixed;
    z-index: 9999;
}

/* Retrait du trait de soulignement pour tous les liens */
.ieb-ctc-button {
    text-decoration: none !important;
}

/* Version desktop */
@media screen and (min-width: 769px) {
    .ieb-ctc-container {
        top: 40px;
        right: 40px;
    }
}

/* Version mobile */
@media screen and (max-width: 768px) {
    .ieb-ctc-container {
        top: 20px;
        right: 20px;
        bottom: auto;
    }
}

.ieb-ctc-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ieb-ctc-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.ieb-ctc-button i {
    font-size: 20px;
    margin-right: 10px;
}

.ieb-ctc-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ieb-ctc-text-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.ieb-ctc-text-number {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

/* Version mobile */
@media screen and (max-width: 768px) {
    .ieb-ctc-button {
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
    }

    .ieb-ctc-text-container {
        display: none;
    }

    .ieb-ctc-button i {
        margin: 0;
        font-size: 24px;
    }
}

/* Debug styles */
.ieb-ctc-debug {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 500px;
    max-height: 80vh;
    overflow: auto;
    z-index: 10000;
}

.ieb-ctc-debug-toggle {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10000;
}

/* Style de la popup */
.ieb-ctc-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 10000;
    min-width: 300px;
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.ieb-ctc-popup.active {
    display: block;
}

.ieb-ctc-popup-options {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.ieb-ctc-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ieb-ctc-option:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ieb-ctc-option i {
    font-size: 32px;
    margin-bottom: 12px;
}

.ieb-ctc-option.whatsapp i {
    color: #25D366;
}

.ieb-ctc-option.phone i {
    color: #007bff;
}

.ieb-ctc-option span {
    font-size: 16px;
    font-weight: 500;
}

/* Overlay */
.ieb-ctc-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ieb-ctc-overlay.active {
    display: block;
} 