body {
    font-family: "Chocolate Classical Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #808080;
}

.small-panel, .large-panel, .search-panel {
    width: 380px;
    margin: 100px auto 0 auto;
}

.large-panel {
    width: 600px;
}

.small-panel a, .large-panel a, .search-panel a {
    color: #000;
    text-decoration: none;
}

.scrollable {
    max-height: 300px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.grid {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.grid td {
    padding: 7px;
    border-bottom: 1px solid #eee;
}

.grid tr:last-child td {
    border-bottom: none;
}

.grid td:first-child {
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.grid td:last-child {
    width: 50px;
    text-align: center;
}

.panel-title {
    padding: 7px;
    text-align: center;
    color: #fff;
}

.panel-logo {
    height: 40px;
    position: relative;
    overflow: hidden;
}

.panel-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: auto;
}

.panel-tn-logo {
    height: 30px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.panel-tn-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
}

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container input::placeholder {
    color: #808080;
}

.form-container input[type="email"], .form-container input[type="password"], .form-container input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: none;
    box-shadow: none;
    outline: none;
    font: inherit;
    color: #000;
    width: calc(100% - 60px);
    display: inline-block;
    margin: 0;
}

.form-container p {
    margin-top: 15px;
    margin-bottom: 3px;
}

.form-container .centered-text {
    text-align: center;
}

.form-container .error-text {
    color: #ff0000;
    text-align: center;
}

.form-container .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.form-container hr, .order-list hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 0;
    padding: 0;
    height: 1px;
    width: 100%;
}

.form-container .buttons {
    text-align: center;
    margin: 20px 0 0;
}

.form-container .button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    width: 100%;
    display: block;
    margin-top: 2px;
}

.form-container .button:hover {
    background-color: #333;
}

.form-container .link-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-top: 10px;
    text-align: center;
}

.form-container .link-button:hover {
    background-color: #333;
    color: #fff;
}

.form-container #passwordToggle, .password-icon {
    cursor: pointer;
}

.form-container .forgot-password {
    padding-top: 3px;
}

.form-container .forgot-password a {
    color: #808080;
    text-decoration: none;
    font-style: italic;
    font-size: 12px;
}

.form-container .signed-in-text {
    text-align: center;
}

.form-container .title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

#autocompleteContainer, #cal {
    margin-top: 15px;
    position: relative;
}

#autocompleteContainer #missingDestination {
    display: none;
    font-size: 12px;
    margin-top: 4px;
    color: red;
}

#autocompleteContainer #missingDestination.shown {
    display: block;
}

#autocompleteContainer #autocompleteResults, #calDropdown {
    display: none;
    padding: 5px 10px;
    width: 100%;
    position: absolute;
    background-color: #fff;
    top: 24px;
    left: 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    z-index: 9999;
    border-radius: 5px;
    box-sizing: border-box;
}

#calDropdown {
    top: 32px;
}

#autocompleteContainer #autocompleteResults.shown, #calDropdown.shown {
    display: block;
}

#autocompleteContainer .autocomplete-result {
    border-top: none;
    cursor: pointer;
    padding: 0 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 30px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.autocomplete-result .matched {
    color: #000;
}

#autocompleteContainer .autocomplete-result:not(:last-child) {
    border-bottom: 1px solid #eff1f0;
}

#cal #checkIn {
    padding: 0 3px;
}

#calDropdown {
    text-align: center;
}

#cal #prev, #cal #next {
    width: 25px;
    height: 29px;
    display: block;
    float: left;
    position: absolute;
    top: 10px;
    fill: #333;
}

#cal #prev {
    left: 10px;
}

#cal #next {
    right: 10px;
}

.cal-table {
    display: inline-block;
    text-align: center;
}

.cal-table td {
    text-align: center;
    color: #ccc;
    width: 28px;
    height: 28px;
    font-weight: bold;
}

.cal-table th {
    text-align: center;
}

.cal-day-names {
    color: #999;
}

.cal-month-names {
    line-height: 32px;
    color: #000;
    font-weight: bold;
}

.cal-table td.today {
    font-weight: bold;
}

.cal-table td a, .cal-table td span {
    display: block;
    line-height: 32px;
}

.cal-table td a {
    color: #000;
    text-decoration: none;
}

.cal-table td a:hover {
    background-color: #eee;
    color: #000;
}

.cal-table td.selected a {
    background-color: #999;
    color: #fff;
}

.cal-table td.highlighted a {
    background-color: #eee;
}

@media (max-width: 640px) {
    .large-panel {
        width: calc(100% - 20px);
    }
}

@media (max-width: 420px) {
    .small-panel {
        width: calc(100% - 20px);
    }
}




