/* Widget Styles */
/* #bookme-widget {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 431px;
    height: 90%;
    z-index: 9999;
}

#bookme-widget iframe {
    width: 100%;
    height: 100%;
    border: 0;
} */

/* @media screen and (max-width: 501px) {
    #bookme-widget {
        width: 100%;
    }
} */

/* Authentication Page Styles */

.bookme-header {
    display: flex;
    align-items: center;
    gap: 10px; /* or use justify-content: space-between if you want them far apart */
}

.bookme-icon {
    height: 24px; /* or your desired size */
}

.bookme-title {
    margin: 0;
    font-size: 1.2rem; /* adjust as needed */
}


.bookme-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* full viewport height */
    width: 100%;
}

.bookme-auth-container > * {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #ccd0d4;
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.bookme-auth-box h3 {
    font-weight: 600;
    font-size: 28px;
}


/* Settings Page Styles */
.bookme-settings-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh; /* full viewport height */
    width: 100%;
}

.bookme-settings-container > * {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #ccd0d4;
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.bookme-settings-box h3 {
    font-weight: 600;
    font-size: 28px;
}

/* Welcome Page Styles */
.bookme-welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 70vh; full viewport height */
    width: 100%;
    margin-top: 40px;

}

.bookme-welcome-container > * {
    background-color: #fff;
    /* padding: 40px; */
    border: 1px solid #ccd0d4;
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    /* max-width: 500px; */
    /* width: 100%; */
    box-sizing: border-box;
}

#welcome-banner {
    width: 100%;
}

.bookme-welcome-text-container {
    max-width: 772px;
}

.bookme-welcome-text {
    padding: 40px;
}

.bookme-welcome-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.bookme-connect-link {
    color: #007aff;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;
    text-decoration: none;
}

.bookme-connect-link:hover {
    text-decoration: underline;
}

/* Common */
.bookme-login-subtitle {
    font-size: 16px;
    color: #898e98;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;
    text-align: left;
}

.bookme-remove-instructor-btn {
    text-decoration: none;
    color: #dc3545;
}

.bookme-remove-instructor-btn:hover {
    text-decoration: underline;
    color: #dc3545;

}

.form-group {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    font-size: 0.75rem;
}

.form-group input {
    background-color: white;
    border: 0.063rem solid #d3d5da;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    caret-color: #898e98;
    height: 2.625rem;
    width: 100%;

    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;
}

.form-group input::placeholder {
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;
}

.form-group select {
    background-color: white;
    border: 0.063rem solid #d3d5da;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    caret-color: #898e98;
    height: 2.625rem;
    /* width: 100%; */

    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;

    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-box-sizing:content-box; 
}

#bookme_professional_id {
    width: 100%;
}

.wrap .button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.75rem;
    padding: 0 0.938rem;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: 250ms;

    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.01rem;
}

.wrap .button-primary {
    /* background-color: #222222; */
    background-color: #007aff;
    color: #ffffff;
}

.wrap .button-primary:hover {
    /* background-color: #908e8e; */
    background-color: #0665cc;
    color: #fff;
}

.wrap .button-primary:disabled {
    background-color: #1a6fc9;
}


.wrap .button-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.wrap .button-danger:hover {
    background-color: #c31426;
}

.wrap .button-danger:disabled {
    background-color: #dd4e5d;
}

.wrap .bookme-login-button-wrapper {
  display: flex;
  justify-content: center; /* center horizontally */
  padding: 1rem 0; /* spacing above and below */
}


.wrap .bookme-google-button {
    color: #4d5461;
    font-weight: 500;
    width: 100%;
    padding: 12px 0;
    background: #fff;
    background-color: transparent;
    border: .063rem solid #e5e6eb;
    border-radius: .5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
}

.wrap .bookme-google-button:hover {
    border-color: #bdbdbd;
    box-shadow: 0 2px 8px rgba(60,60,60,0.04);
    background-color: #fff;
}

.wrap .bookme-google-button img {
    width: 22px;
    height: 22px;
    margin-right: 6px;
}


#forgot-password-text {
    /* color: #898e98; */
    color: #007aff;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;
    text-decoration: none;
}

#forgot-password-text:hover {
    text-decoration: underline;
}

.padding-y-20 {
    padding: 20px 0 20px 0;
}

.text-align-right {
    text-align: right !important;
}


.bookme-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 18px 0 12px 0;
}
.bookme-separator span {
    color: #888;
    font-size: 1rem;
    padding: 0 12px;
    background: #fff;
    z-index: 1;
}
.bookme-separator:before,
.bookme-separator:after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 4px;
}

.error-message-response {
    color: #dc2626;
    font-family: "Inter", sans-serif;
    /* font-size: 0.875rem; */
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.01rem;
    text-decoration: none;
}


/* Responsive Design */
@media screen and (max-width: 782px) {
    .wrap .bookme-auth-container {
        flex-direction: column;
    }
    
    .wrap .bookme-auth-box {
        margin-bottom: 1rem;
    }
    
    .wrap .bookme-auth-box input[type="email"],
    .wrap .bookme-auth-box input[type="password"] {
        font-size: 16px; /* Prevent zoom on mobile */
    }
    
    .wrap .bookme-professional-selector {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wrap .bookme-professional-selector select {
        width: 100%;
    }
    
    .wrap .bookme-professional-selector button {
        width: 100%;
    }
}


.bookme-selector-row {
    display: flex;
    align-items: center;
    gap: 10px; /* space between select and button */
}

.bookme-signup-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.75rem;
    padding: 0 0.938rem;
    box-sizing: border-box;
    outline: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: 250ms;
    background-color: #007aff;
    color: #ffffff;
    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.01rem;
}

.bookme-signup-button:hover {
    background-color: #0665cc;
    color: #fff;
    text-decoration: none;
}

.bookme-signup-button:disabled {
    background-color: #1a6fc9;
}

.bookme-user-name {
    font-weight: 500;
    color: #222;
    margin-left: 4px;
    font-size: 1rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

#bookme_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    padding: 0 32px;
    min-height: 60px;
    margin-bottom: 32px;
    z-index: 10;
}

#bookme_header .header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#bookme_header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wrap {
    margin: 0 0 0 0;
}

#wpcontent {
    padding-left: 0;
}

.header-title-text {
    font-size: 1.2rem;
}
