/* =========================================
   Doctolib Button (Inline CTA)
   ========================================= */

.doctolib-button-wrapper {
    margin: 0;
    width: 100%
}

.orthoreg-doctolib-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    
    gap: 20px;

    padding: 30px 30px;

    background-color: var(--gcid-primary-color);
    color: #fff;

    font-family: var(--headline-font);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;

    border-radius: 6px;
    transition: all 0.25s ease;

    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Logo via ::before */
.orthoreg-doctolib-button::before {
    content: "";
    display: inline-block;

    width: 50%;
    height: 40px;

    background-image: url("/wp-content/uploads/2026/04/doctolib-white-transparent.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hover = CI Grün */
.orthoreg-doctolib-button:hover {
    background-color: var(--gcid-secondary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}