/* Coaching Booking PWA — Base Styles */
#coaching-booking-root {
    min-height: 100vh;
    background: #0a0a0a;
    color: #e0e0e0;
}

/* Reset WP theme styles inside the app */
#coaching-booking-root * {
    box-sizing: border-box;
}

#coaching-booking-root button {
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
    text-transform: none;
    letter-spacing: normal;
    line-height: normal;
    box-shadow: none;
}

#coaching-booking-root input,
#coaching-booking-root textarea,
#coaching-booking-root select {
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 12px;
}

/* Prevent theme buttons from stretching calendar day cells */
#coaching-booking-root .cb-mini-calendar button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    flex: 0 0 36px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    border-radius: 10px !important;
}

#coaching-booking-root .cb-mini-calendar [style*="grid-template-columns"] {
    display: grid !important;
}

#coaching-booking-root .cb-mini-calendar [style*="repeat(7, 1fr)"] {
    grid-template-columns: repeat(7, 1fr) !important;
}

/* Calendar navigation arrows */
#coaching-booking-root .cb-mini-calendar > div:first-child button {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 4px !important;
    margin: 0 !important;
}

/* Primary action buttons should remain full width */
#coaching-booking-root button[style*="width: 100%"] {
    width: 100% !important;
}

@media (min-width: 769px) {
    #coaching-booking-root .cb-admin-week-list {
        display: none;
    }
}


body.cb-booking-fullscreen #wpadminbar {
    display: none !important;
}

body.cb-booking-fullscreen.admin-bar {
    margin-top: 0 !important;
}

html.cb-booking-fullscreen,
html:has(body.cb-booking-fullscreen) {
    margin-top: 0 !important;
}


body.pwa-mode #wpadminbar {
    display: none !important;
}

body.pwa-mode {
    margin-top: 0 !important;
}

body.cb-booking-fullscreen {
    margin: 0 !important;
    padding: 0 !important;
    background: #0a0a0a;
}

body.cb-booking-fullscreen #coaching-booking-root,
#coaching-booking-root.cb-pwa-mode {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    /* Le header sticky gère le top ; le bas reste accessible au-dessus de l'home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0px);
}
