﻿.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.employers {
    color: rgb(0, 119, 181);
    font-weight: 500;
}

.associates {
    color: rgb(34, 139, 34);
    font-weight: 500;
}

.home-container {
    max-width: 80%;
    margin: 0 auto;
}

.card {
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 1px 20px;
    margin-bottom: 15px;
}

.logo {
    width: 40px;
    height: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkbox-hidden {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-replacement {
    width: 36px;
    height: 18px;
    background-color: #eee;
    border-radius: 5px;
}

.checkbox-hidden:checked + .checkbox-replacement {
    background-color: #0077b5;
}

.checkbox-hidden:not(:checked) + .checkbox-replacement:hover {
    background-color: #ccc;
}

.associate-index-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.select-page-container {
    margin-right: 50px;
}

.page-display {
    margin: 0px 5px;
    font-weight: 500;
}

.select-page-button {
    color: black;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.disabled {
    cursor: none;
    color: #ccc;
    pointer-events: none;
}

.interactive-base {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    color: black;
    background-color: white;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    cursor: pointer;
    font-size: 15px;
    text-wrap: nowrap;
    margin: 0px 10px;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    min-height: 80px;
}

.header-grid div {
    display: flex;
    align-items: center;
}

.header-grid .left {
    justify-content: start;
}

.header-grid .center {
    justify-content: center;
}

.header-grid .right {
    justify-content: right;
}

.validation-error {
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkred;
    margin-top: 20px;
}

.select-associate-div {
    font-size: 15px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 80px;
}

.profile-icon {
    width: 25px;
    min-width: 25px;
    margin-right: 3px;
    vertical-align: middle;
}

.profile-anchor {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: underline;
}

.details-container {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details-container h2 {
    margin-bottom: 0px;
}

.details-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0px 15px;
    align-items: center;
    margin: 10px;
}

.details-grid .left {
    text-align: right;
}

.details-grid ul {
    list-style: none;
    padding-left: 0;
}

.linkedin-anchor {
    text-decoration: dotted line-through underline;
    cursor: pointer;
    color: #bbb;
}

.verified-icon {
    width: 20px;
    margin-right: 5px;
}

.verified-paragraph {
    display: flex;
    align-items: center;
}

.favorite-icon {
    width: 18px;
    margin-right: 5px;
}

.favorite-listitem {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.loading-paragraph {
    width: fit-content;
    margin: 0 auto;
}

.enter-request-details-div {
    width: clamp(350px, 60%, 600px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.enter-request-details-textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
}

.duration-div {
    display: flex;
    flex-direction: column;
    margin: 25px 0px 15px 0px;
}

.submit-request-div {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.thanks-div {
    width: fit-content;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.return-div {
    width: clamp(250px, 30%, 300px);
    margin: 0 auto;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.associate-not-found-div {
    width: clamp(350px, 60%, 600px);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
