
    html, body {
        font-family: Inter;
        font-size: 16px;
        margin: 0;
        padding: 0;
        height: 100vh;
    }

    [v-cloak] {
      display: none;
    }

/*multipage elements*/
    .genericbutton {
        border: none;
        border-radius: 10px;
        padding: 10px 10px;
        height: 50px;
        width: 250px;
        text-align: center;
        text-decoration: none;
        font-size: 24px;
        font-family: 'Inter';
        font-weight: 700;
        cursor: pointer;
        background-color: #7E00C2;
        color: white;
        margin: auto;
    }

    .genericbutton:hover {
        background-color: #C174E3;
        color: #ffffff;
    }

    .backspacer {
        background-color: #F3DEFF;
        background-attachment: scroll;
        width: 100%;
        margin-top: 0;
        height: 808px;
        background-size: cover;
        display: grid;
    }

/* Animations for all components */
    * {
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    #imagelogo {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 8px;
        margin-bottom: 8px;
        float: left;
    }

    #textlogo {
        font-family: 'Tomorrow';
        font-style: italic;
        font-size: 32px;
        padding-top: 16px;
        padding-bottom: 17px;
        padding-left: 5px;
    }
    
    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        position: sticky;
        overflow: hidden;
        background-color: #ededed;
    }
     
    li {
        float: left;
        font-family: 'Inter';
        font-size: 20px;
        font-weight: 600;
    }

    li a {
        display: block;
        color: #000000;
        text-align: center;
        padding: 25px 25px;
        text-decoration: none;
    }
      
    li a:hover:not(.active) {
        text-decoration: underline;
        text-decoration-thickness: 5px;
        text-decoration-color: #d2a2e6;
        text-underline-offset: 8px;
    }
      
    li a.active {
        text-decoration: underline;
        text-decoration-thickness: 5px;
        text-decoration-color: #C174E3;
        text-underline-offset: 8px;
        transition-duration: .10s;
    }
    
    #NavBar {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        position: relative;
    }
    
    
/*home*/
    .homeslogan {
        text-align: center;
        margin: auto;
    }

    .home__background {
        background-image: url("starry-sky.webp");
        background-position-x: center;
        background-position-y: bottom;
        height: 91.5%;
    }
    
    .homecontainer {
        text-align: center;
    }

    .home__cards {
        display:flex;
        justify-content: space-around;
        margin-top: 100px;
        height: 290px;
    }

    .home__card {
        position: relative;
        text-align: center;
        background-color: #F0F0F0;
        height: 290px;
        width: 310px;
        border-top-right-radius: 50px;
        border-bottom-left-radius: 50px;
        box-shadow: 8px 8px 6px 0px rgba(0, 0, 0, 0.25);
    }

    .home__card h1{
        font-family: Inter;
        font-size: 24px;
        font-weight: 700;
        margin: 16px 16px;
    }

    .home__card p{
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
        margin: 16px 16px;
    }

    .home__card .circle {
        position: absolute;
        top: -5%;
        left: -5%;
        background-color: #B669D8;
        color: #000000;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        font-size: 36px;
    }


/* Login and Signup */
    .signin__background {
        position: relative;
        display: flex;
        align-items: center;
    }

    .signin__form *{
        display:block;
    }

    .signin__form {
        background-color: #F3F3F3;
        margin: 60px auto auto auto;
        border-radius: 10px;
        padding: 25px 100px 100px 100px;
    }

    .signin__form h1 {
        font-size: 48px;
        color:#7E00C2;
        margin: 0px 0px 32px 0px;
    }

    .signin__form > div {
        padding: 0px 0px 20px 0px;
    }

    .signin__form div input {
        width: 680px;
        height: 60px;
        border-radius: 10px;
        border: solid 2px #929292;
    }

    .signin__form div label {
        font-size: 18px;
    }

    #signin__button {
        width: 420px;
        height: 50px;
        border-radius: 10px;
        font-size: 24px;
    }

    .signin__password {
        position: relative;
    }

    .signin__password img{
        position: absolute;
        transform: translateY(-25%);
        right: 10px;
        top: 50%;
        cursor: pointer;
        width: 40px;
        height: 40px;
    }

    .signin__page_swap {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }

    .signin__page_swap :first-child{
        font-weight: bold;
        margin-right: 5px;
    }

    .signin__page_swap :last-child{
        font-weight: bold;
        border-bottom: 1px solid #7E00C2;
        color: #7E00C2;
        box-sizing: border-box
    }

    .third-party-sign-in-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
        gap: 10px; /* Space between buttons */
        justify-content: center; /* Centers the grid */
        width: 100%;
        max-width: 620px; /* Ensures grid width doesn't stretch too far */
        margin: auto;
    }

    button.third-party-sign-in {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 300px;
        background-color: #FFFFFF;
        padding: 10px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
    }

    button.third-party-sign-in img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    button.third-party-sign-in.facebook {
        background-color: #3b5998;
        color: white;
    }

    button.third-party-sign-in.apple {
        background-color: #000000;
        color: white;
    }

    #signin_or {
        display: flex;
        align-items: center;
        padding: 20px 0px;
    }

    #signin_or div{
        height: 2px;
        width: 100%;
        background-color: #B6B6B6;
    }

    #signin_or h2{
        text-align: center;
        font-size: 24px;
        margin: 0px 20px;
        color: #B6B6B6
    }


/* Search */
    .search__input {
        padding: 20px 20px 0px 20px;
    }

    .search__input div{
        margin: 5px 0px;
    }

    .search__input div label{
        width: 125px;
        margin: auto 0px;
    }

    .search__input div button{
        height: 30px;
        width: 30px;
        border-radius: 50%;
        background-color: #B669D8;
        color: #FFFFFF;
        border: none;
        display: flex;
        cursor: pointer;
    }

    .button-minus, .button-plus {
      cursor: pointer;
      transition: opacity 0.3s ease, filter 0.3s ease;
    }

    .button-minus:hover, .button-plus:hover {
      filter: brightness(0.8);
    }

    .button-minus.disabled {
      opacity: 0.5;
      pointer-events: none;
    }

    .search__input div p{
        margin: auto 10px;
    }

    .search__input button{
        display:block;
        width: 120px;
        height: 40px;
        margin: 20px 0px;
        border-radius: 20px;
        border: 2px solid #929292;
        cursor: pointer;
    }

    .search__input button.active{
        background-color: #B669D8;
        border-color: #B669D8;
        color: #FFFFFF;
    }

    .search__input input {
        border: 2px solid #929292;
        width: 300px;
        height: 40px;
        border-radius: 10px;
        margin-right: 20px;
        padding-left: 10px;
        font-size: 16px;
    }

    .search__calendars {
        display:flex;
        justify-content: center;
        height: 500px;
    }

    .calendar-navigation {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .calendar-navigation h2{
      margin: 0px;
    }

    .calendar-navigation button {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
    }

    .calendar-navigation button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

        /* Month container */
    .month-container {
        margin: 0px 50px 0px 50px;
        display:flex;
        flex-direction: column;
    }

    /* Month title */
    .month-title {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin: 10px;
    }

    /* Calendar grid */
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        border: 1px solid #ccc;
        font-size: 10px;
        border: none;
    }

    /* Weekday header */
    .weekday {
        font-weight: bold;
        height: 24px;
        width: 60px;
        border-bottom: 1px solid #ccc;
        background: #F3DEFF;
        margin: 2px;
        border-radius: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .empty-cell {
        padding: 10px;
        visibility: hidden;
    }

    .date-cell {
        box-sizing: border-box;
        margin: 3px;
        padding: 1px;
        border: 1px solid #000000;
        border-radius: 2px;
        height: 60px;
        width: 60px;
        font-size: 12px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .date-cell:hover {
      background-color: #f0f0f0;
    }

    .date-cell.selected {
      border: 2px solid purple;
      background-color: #e0b3ff
    }

    .date-cell.in-range {
      background-color: #e0b3ff; /* Light purple */
    }

    .date-cell.past {
      color: gray;
      cursor: not-allowed;
      opacity: 0.5;
    }

    /* Date text */
    .date-text {
        margin: 7px;
        text-align: left;
    }

    /* Price section */
    .price {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }


/* Results */
    .content {
        font-size: 14px;
        display: grid;
        grid-template-areas:
        "showingresults locationdate"
        "filters resultsandview";
        grid-template-columns: 275px auto;
        grid-template-rows: auto auto;
        gap: 10px;
    }

    .locationdate {
        grid-area: locationdate;
        margin-top: 20px;
        margin-left: 0%;
        margin-right: 20px;
        padding-bottom: 0%;
    }
    .locationdate p {
        margin-bottom: 0%;
        margin-top: 0%;
        padding-left: 8px;
    }
    .locationdate input {
        border-color: #e7e7e7;
        cursor: default;
        box-shadow: 5px 5px 5px #e7e7e7 inset;
        border-width: .5px;
        height: 25px;
        width: 200px;
    }
    .location {
        float: left;
    }
    .startinglocation {
        float: left;
    }
    .startinglocation input {
        border-top-right-radius: 0%;
        border-bottom-right-radius: 0%;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
        border-style: solid;
        border-width: 1px;
        border-color: #b6b6b6;
    }
    .endinglocation {
        float: right;
    }
    .endinglocation input {
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        border-top-left-radius: 0%;
        border-bottom-left-radius: 0%;
        border-style: solid;
        border-width: 1px;
        border-color: #b6b6b6;
    }
    .date {
        float: right;
    }
    .departuredate {
        float: left;
    }
    .departuredate input {
        border-top-right-radius: 0%;
        border-bottom-right-radius: 0%;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
        border-style: solid;
        border-width: 1px;
        border-color: #b6b6b6;
    }
    .returndate {
        float: right;
    }
    .returndate input {
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        border-top-left-radius: 0%;
        border-bottom-left-radius: 0%;
        border-style: solid;
        border-width: 1px;
        border-color: #b6b6b6;
    }

    .showingresults {
        font-weight: bold;
        font-style: italic;
        grid-area: showingresults;
        margin: 0 0 0 10px;
        display: flex;
        align-items: flex-end; /* Align text to the bottom */
        height: 100%; /* Ensure the container has a defined height */
    }

    .filters {
        background-color: #FFFFFF;
        grid-area: filters;
        margin-top: 0%;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 0%;
    }
    .filters p {
        margin-bottom: 0%;
        margin-top: 0%;
    }

    .filters__category_label{
        background-color: #E7E7E7;
        border-width: 1px;
        border-style: solid;
        border-color: #929292;
        border-radius: .5px;
        font-weight: bold;
        padding-left: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    /* Set p to be on left and img to be on right */
    .filters__category_label, .filter_label {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }
    .filters__category_label p, .filter_label p{
        flex: 1;
    }
    .filters__category_label img, .filter_label img{
        margin-right: 7px;
    }

    .custom-checkbox, .custom-radio {
        margin: 0px 0px 0px 20px;
    }

    /* For arrow inversion */
    img {
      transition: transform 0.3s ease;
    }
    img.inverted {
      transform: scaleY(-1);
    }

    .filter {
        padding: 10px 0px;
        margin: 0px 20px 0px 10px;
        border-bottom: 1px solid #929292;
    }
    .filters__category :last-child{
        border: none;
    }

    .filter input {
        cursor: pointer;
        margin: 2px 2px;
    }
    .filter p{
        font-weight: bold;
        padding-bottom: 3px;
    }
    .checkboxp {
        display: inline;
    }

    .resultsandview {
        grid-area: resultsandview;
        border: solid #929292 1px;
        margin-top: 0%;
        margin-bottom: 10px;
        margin-left: 0%;
        margin-right: 20px;
    }
    .viewselect {
        background-color: #ededed;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 1px;
        border-style: solid;
        border-color: #929292;
        border-radius: .5px;
        padding-left: 13px;
        padding-right: 13px;
        padding-top: 10px;
        padding-bottom: 10px;
        display: grid;
        grid-template-areas: "sortby displaystyle";
        grid-template-columns: 50% 50%;
    }
    .viewselect p {
        margin: 4px 4px;
        float: left;
    }
    .viewselect button {
        margin: 0;
        float: left;
        border-width: 1.5px;
        border-radius: 2.5px;
        border-color: #696969;
        border-style: solid;
        box-shadow: 0px 4px 4px #b6b6b6;
        background-color: #e7e7e7;
        padding: 3px 7px;
        cursor: pointer;
        display: flex;
        justify-content: space-around;
    }

    .viewselect button img {
        padding-left: 5px;
    }

    .viewselect button:hover:not(.active) {
        background-color: #d2a2e6;
    }

    .viewselect button.active {
        background-color: #C174E3;
    }

    .sortby {
        float: left;
    }
        .displaystyle {
        float: right;
    }

/* Custom Checkbox */
    .custom-checkbox {
        display: flex;
        padding-top: 7px;
    }

    /* Hide the default checkbox */
    .custom-checkbox label input {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

    /* Checkbox */
    .custom-checkbox label .checkmark {
        box-sizing: border-box;
        position: relative;
        display: inline-block;
        height: 15px;
        width: 15px;
        background-color: #FFFFFF;
        border: 1.5px solid #000000;
        border-radius: 3px;
        margin-right: 5px;
        transition: .2s;
    }

    /* Show the checkmark when the checkbox is checked */
    .custom-checkbox label input:checked ~ .checkmark:after {
        display: block;
    }

    /* Change the background color when the checkbox is checked */
    .custom-checkbox label input:checked ~ .checkmark {
        background-color: #BA36FC;
    }

/* Custom Switch */
    /* The switch - the box around the slider */
    .custom-switch {
        position: relative;
        display: inline-block;
        width: 38px;
        height: 20px;
    }

    /* Hide default HTML checkbox */
    .custom-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* Custom Switch */
    .round-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #9E9E9E;
        border-radius: 16px;
        transition: 0.4s;
    }

    .round-slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 2px;
        background-color: white;
        border-radius: 50%;
        transition: 0.4s;
    }

    input:checked + .round-slider {
        background-color: #9B00DE;
    }

    input:focus + .round-slider {
        box-shadow: 0 0 1px #9B00DE;
    }

    input:checked + .round-slider:before {
        transform: translateX(100%);
    }

    /* Circle overlay for off state */
    .switch-circle-overlay {
        position: absolute;
        content: "";
        height: 7px;
        width: 7px;
        border: 1px solid grey;
        background-color: white;
        border-radius: 50%;
        top: 5px;
        left: 6.5px;
        pointer-events: none;
        display: block;
        opacity: 1;
        transition: 0.4s;
    }

    input:checked ~ .round-slider .switch-circle-overlay {
        opacity: 0; /* Hide overlay when switch is on */
        transform: translateX(185%);
        transition: 0.4s;
    }

    /* Purple box for off state */
    .switch-purple-box {
        position: absolute;
        content: "";
        height: 8px;
        width: 2px;
        background-color: purple;
        border-radius: 13px;
        top: 5px;
        right: 9px;
        transform: translate(-850%);
        pointer-events: none;
        display: block;
        opacity: 0;
        transition: 0.4s;
    }

    input:checked ~ .round-slider .switch-purple-box {
        opacity: 1;
        transform: translate(-50%);
    }

/* Custom Radio */
    .custom-radio {
        position: relative;
        display: block;
        height: 20px;
        margin: 5px 0px 0px 18px;
        transition: 0.4s;
    }

    .custom-radio label {
        margin-left: 30px;
    }

    /* Hide the default radio button */
    .custom-radio input[type="radio"] {
        display: none;
    }

    /* Outer circle for unchecked state */
    .custom-radio .outer-circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border: 1.5px solid black;
        border-radius: 50%;
        background-color: white;
    }

    /* Style for checked state */
    .custom-radio input[type="radio"]:checked + .outer-circle {
        border-color: #9B00DE;
        background-color: #9B00DE;
    }

    .custom-radio input[type="radio"]:checked + .outer-circle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #9B00DE;
        border: 2px solid white;
    }

    .results {
        font-family: 'Roboto Mono';
    }

    .result__timebar-header, .results-row, .timebar-background{
        display: grid;
        grid-template-columns: 200px auto;
    }

    .result__timebar-header div{
        display:flex;
    }

    .result__timebar-header div p{
        flex: 1;
        text-align: center;
    }

    .results-rows{
        position: relative;
    }

/* Timebar */

    .timebar{
        display: flex;
        flex: 1;
        padding: 10px 0px;
        grid-column-start: 2;
    }

    .timebar-col{
        flex: 2;
        border-left: solid black 1px;
    }

    .timebar-background{
        position: absolute; /* Position timebar-background absolutely */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .timebar-background :nth-child(2){
        display: flex;
    }

    .timebar-background :first-child{
        border: none;
    }

    .timebar-background :first-child, .timebar-background :last-child{
        flex: 1;
    }

    .timebar-label{
        border: solid 1px;
        display: flex;
        width: 135px;
        margin: 15px 7px 15px 25px;
        background-color: #FFFFFF;
        grid-column-start: 1;
    }

    .timebar-label *{
        margin: 3px;
    }

    .timebar-label img{
        height: 20px;
    }

    .timebar * {
       height:40px;
    }

    .timebar > *:nth-child(2){
        border-radius: 5px 0px 0px 5px;
    }

    .timebar > *:nth-last-child(2){
        border-radius: 0px 5px 5px 0px;
    }


    .timebar .car {
        background-color: #52C05B;
    }

    .timebar .plane{
        background-color: #40A3FF
    }

    .timebar .layover{
        background: repeating-linear-gradient(
            -40deg,
            #40A3FF,
            #40A3FF 2.5px,
            #838383 2.5px,
            #838383 5px
        );
    }

    .timebar .wait{
        background-color: #838383
    }

    .timebar * {
        overflow: hidden;
    }

    .timebar * img, .timebar * svg{
        margin: auto;
        display: block;
    }

/* Slider */
    .slider-multithumb {
        padding: 0 10px; /* Optional padding */
        box-sizing: border-box; /* Ensure padding doesn't affect the width */
    }

    .slider-multithumb input {
        width: 50px;
    }

    .slider-group {
        width: 100%;
        height: 30px;
        position: relative;
        margin: 0 auto;
        border-radius: 5px;
    }

    .rail rect {
        fill: #000000;
        border-radius: 5px;
    }

    .range rect {
        fill: #9B00DE;
        stroke: #7E00C2;
        border-radius: 5px;
    }

    .minimum, .maximum {
        cursor: pointer;
    }

    .thumb {
        fill: #9B00DE;
        stroke: #7E00C2;
        stroke-width: 2;
    }

    .value {
        font-size: 14px;
        fill: #4CAF50;
        text-anchor: middle;
    }