body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
    margin: 0;
}

h2 {
    margin-left: 2px;
}
.handler-bg {
    background-color: #faf6d0;
}

.researcher-bg {
    background-color: #d0f6fa;
}

div {
    background-color: none;
}
#results {
    clear: right;
    width: 1000px;
    min-width: 800px;
    margin: 0px 20px;
    padding: 10px;
    border-radius: 0.25em;
}
.profile td {
    padding:5px 0px;
}

img {
    height: 20px;
}
.ls-header {
    font-family: arial;
    font-size: 1.3em;
    margin: 0px 5px 0px 20px;
    padding: 5px 0 0px 0;
    display: flex;
    align-items: center;
}
.ls-header img {
    height: 50px;
}
.ls-header-title {
    margin-right: 10px;
    border-radius: 0.25em;
    height: 30px;
    width: 30px;
    background-size: cover;
}
.ls-header-link {
    color: white;
    font-size: 1.3em;
    text-decoration: none;
}
#div-menu {
    margin: 10px 30px 0px 30px;
}
.menu-tab {
    margin: 10px 10px 0px 0px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25em;
    padding: 5px 7px;
    text-decoration: none;
    color: white;
}

.menu-tab:hover {
    background-color: rgb(95, 15, 15);
}

/* Button styled like menu-tab for forms (e.g., sign out) */
.menu-tab-button {
    margin: 0px 10px 0px 0px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25em;
    padding: 5px 7px;
    text-decoration: none;
    color: white;
    border: none;
    font-size: inherit;
    cursor: pointer;
    vertical-align: middle;
}

.menu-tab-button:hover {
    background-color: rgb(95, 15, 15);
}

.submit-button {
    margin-right: 10px;
    /* background-color: var(--fc-button-bg-color); */
    background-color: #2c3e50;
    border-radius: 0.25em;
    padding: 5px 7px;
    text-decoration: none;
    color: white;
    border-width: 0px;
    font-size: medium;
}
.submit-button:hover {
    background-color: rgba(90, 15, 15);
}
.cancel-button {
    margin-right: 10px;
    background-color: #e74c3c;
    border-radius: 0.25em;
    padding: 5px 7px;
    text-decoration: none;
    color: white;
    border-width: 0px;
    font-size: medium;
}
.cancel-button:hover {
    background-color: rgba(90, 15, 15);
}

.booking .booked-slot {
    background-color: rgba(15, 15, 95);
}
.parallax1 {
    background-image: url("/static/img/bw-yoga.jpg");
    min-height: 100px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.form-table {
    width: 100%;
    font-size: 1.3em;
}
#msg-text {
    font-size: 0.8em;
    color: blue;
    display:inline-block;
}

/* Edit profile page table styling for desktop */
#results form table {
    table-layout: fixed;
    width: 100%;
}

#results form table td {
    vertical-align: top;
}

#results form table td:first-child {
    width: 20%;
}

#results form table td:last-child {
    width: 80%;
}

/* Sign up page help text */
.help-text {
    margin-top: 40px;
    font-size: 0.75em;
    color: #777;
}

.help-text p {
    margin: 5px 0;
}

.help-text ul {
    margin: 5px 0;
    padding-left: 20px;
}

.schedule-profile-table td {
    padding-right: 10px;
}

.biolink {
    text-decoration: none;
}

/* Landscape mobile devices */
/* @media only screen and (orientation: landscape) and (max-device-height: 480px) {
    .user_speech,
    .agent_speech {
        font-size: x-large;
        margin-right: 40px;
    }

    .attendee {
        font-size: x-large;
    }

    .attendee input[type="checkbox"] {
        width: 30px;
        height: 30px;
    }
} */


.social-login-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.social-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.social-login-btn:hover {
    background-color: #f5f5f5;
}

.social-login-btn.google {
    border-color: #4285f4;
    color: #4285f4;
}

.social-login-btn.google:hover {
    background-color: #4285f4;
    color: white;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #666;
}

/* Portrait mobile devices */
@media only screen and (orientation: portrait) and (max-device-width: 480px) {
    /* #results {
        width: 100%;
        min-width: 0px;
    } */

    .ls-header {
        font-size: 2.0em;
        margin: 0;
        padding: 10px;
    }

    .ls-header img {
        height: 60px;
        padding: 0px 5px;
    }

    .ls-header-title {
        height: 60px;
        width: 60px;
    }

    #div-menu {
        margin: 10px 0px 0px 30px;
        padding-bottom: 10px;
    }

    .menu-tab {
        font-size: 2em;
    }

    .menu-tab-button {
        font-size: 2em;
    }

    .submit-button {
        font-size: 1.5em;
        border-radius: 0.25em;
        padding: 5px 7px;
    }

    #msg-text {
        font-size: 1.0em;
    }

    /* #results {
        font-size: 1.5em;
    } */

    /* Form styling for mobile */
    .form-table input[type="text"],
    .form-table input:not([type="checkbox"]):not([type="radio"]):not([hidden]) {
        width: 100% !important;
        font-size: 1.0em;
        padding: 10px;
        box-sizing: border-box;
    }

    .form-table select {
        font-size: 1.0em;
        padding: 10px;
    }

    .form-table td {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    .form-table tr {
        display: block;
        margin-bottom: 15px;
    }

    .form-table tr:has(select) td {
        display: inline-block;
        width: auto;
    }

    /* Google Places Autocomplete dropdown styling */
    .pac-container {
        font-size: 1.5em !important;
    }

    .pac-item {
        padding: 10px !important;
        line-height: 1.5 !important;
    }

    .pac-item-query {
        font-size: 1.2em !important;
    }

    .booking h2 {
        font-size: 2.5em;
    }
    .booking .fc-header-toolbar {
        font-size: 2em;
    }

    .schedule h2 {
        font-size: 2.5em;
    }
    .schedule .fc-header-toolbar {
        font-size: 2em;
    }    

    .times h2 {
        font-size: 2.5em;
    }
    .times #current-month {
        font-size: 2em;
    }
    
    .bases-container h2 {
        font-size: 2.5em;
    }
    .edit-profile h2 {
        font-size: 2.5em;
    }

    /* Edit profile page table styling */
    /* #results table {
        width: 100%;
        border-collapse: collapse;
    }

    #results table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    #results table tr {
        display: block;
        margin-bottom: 20px;
    }

    #results table td:first-child {
        font-weight: bold;
        font-size: 1.3em;
        margin-bottom: 5px;
    }

    #results table td:last-child {
        font-size: 1.0em;
    }

    #results table input[type="text"] {
        width: 100% !important;
        font-size: 1.5em !important;
        padding: 15px !important;
        box-sizing: border-box;
    } */
}
