body {
    font-family: Roboto;
    background-color: black;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

#header-shows-link {
    border-bottom: 2px solid rgba(0, 255, 251, 1);
}

.main-flex {
    display: flex;
    flex-direction: column;
    background-color: black;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tour-dates-header {
    font-size: 36px;
    margin: 0px;
    text-align: center;
}

.shows-sort {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    padding: 0;
    column-gap: 10px;
    margin: 30px 0 30px 0;
}

.shows-sort button {
    background-color: black;
    color: white;
    border: 1px solid white;
    padding: 7px;
    border-radius: 4px;
    cursor: pointer;
}

.shows-sort button:hover {
    background-color: white;
    color: black;
}

.active-sort {
    background-color: white !important;
    color: black !important;
}

.shows-container {  
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 80%;
    max-width: 80%;
    margin: 0;
}

.show-container {
    display: flex;
    flex-direction: row;
    max-height: fit-content;
    column-gap: 5px;
    border: 1px solid white;
    border-radius: 10px;
    padding: 15px;
    margin: 0;
    align-items: center;
    justify-content: space-around;
    transition: border 0.3s ease;
}

.show-container:hover {
    border: 1px solid rgb(0, 255, 251);
}

.show-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    row-gap: 1px;
    align-items: center;
    justify-content: center;
}

.show-details-date {
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.show-details-city {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: rgb(0, 255, 251);
    text-align: center;
}

.show-details-venue {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: white;
    text-align: center;
}

.show-details-2 {
    flex: 4;
    display: flex;
    flex-direction: column;
    row-gap: 1px;
    align-items: center;
    justify-content: center;
}

.show-details-title {
    margin: 0;
    font-size: 14px;
    color: white;
    text-align: center;
}

.show-details-description {
    padding: 0;
    margin: 0;
    font-size: 10px;
    color: white;
    text-align: center;
    font-weight: 400;
    text-align: center;
}

.show-details-lineup {
    padding: 0;
    margin: 0;
    font-size: 10px;
    font-style: italic;
    color: white;
    font-weight: 400;
    text-align: center;
}

.show-details-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.show-details-time {
    padding: 0;
    margin: 0;
    font-size: 14px;
    min-width: 46px;
}
    
.tickets-flex-box {
    flex: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.tickets-flex-box button {
    font-family: roboto;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    background-color: black;
    padding: 5px;
    margin: 0 4px 0 4px;
    transition: all 0.3s ease;
}

.get-tickets-button {
    color: rgb(0, 255, 251);
    border: 1px solid rgb(0, 255, 251);
}

.get-tickets-button:hover {
    background-color: rgb(0, 255, 251);
    color: black;
}

.more-info-button {
    color: white;
    border: 1px solid white;
}

.more-info-button:hover {
    background-color: white;
    color: black;
}

.sold-out-flex-box {
    flex: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.sold-out-label {
    font-size: 14px;
    color: rgb(0, 255, 251);
    cursor: default;
    text-align: center;
}

/* Media query for screens smaller than 515px */
@media only screen and (max-width: 515px) {
    .show-container {
        flex-direction: column;
        max-width: 500px; 
        row-gap: 8px;
    }
    .show-details {
        row-gap: 1px;
    }
    .show-details-2 {
        row-gap: 1px;
    }
}

/* TELL US WHERE TO PLAY */

.tell-us-where-to-play-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 80%;
    position: relative;
}

.tell-us-where-to-play-header {
    font-size: 24px;
    margin: 40px 0 15px 0;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}

.form-entry {
    flex: 2;
    min-height: 21px;
    font-size: 15px;
    padding: 3px 0 3px 10px;
    border-radius: 4px;
    border: 1px solid white;
}

.form-entry:focus {
    border: 1px solid rgb(0, 255, 251);
    outline: none;
}

.form-submit {
    flex: 1;
    min-height: 29px;
    padding: 3px;
    border: 1px solid white;
    border-radius: 4px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background-color: black;
    color: white;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 400%;
}

.form-submit:hover {
    background-color: white;
    color: white;
    animation: submit-animation 7s linear infinite;
}

@keyframes submit-animation {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

.suggestions-box {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 2;
    width: 300px;
    height: 160px;
}

.suggestion {
    padding: 7px;
    background-color: white;
    color: black;
    font-family: 'Arial';
    font-size: 12px;
    cursor: pointer;
    width: 100%;
    margin-left: 15px;
    border: 1px dotted rgb(0, 255, 251);
    border-radius: 4px;
}

.suggestion:hover {
    background-color: rgb(219, 219, 219);
}

/* BAR CHART */

.bar-chart-container {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    margin: 15px 0 0 0;
}

.label-column {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.bar-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    row-gap: 7px;
}

.votes-column {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.plus-one-column {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.bar-graph-label-container {
    display: flex;
    align-items: end;
    justify-content: end;
    overflow: hidden;
    height: 18px;
}

.bar-graph-label {
    display: flex;
    color: white;
    font-size: 15px;
    font-weight: 400;
    align-self: center;
    overflow: hidden;
}

.canvas-bar {
    color: white;
    background-color: transparent;
    height: 18px;

    /* this makes the bars on the graph not look blurry at the end */
    image-rendering: pixelated;
}

.bar-graph-votes-container {
    display: flex;
    align-items: start;
    justify-content: start;
    overflow: hidden;
    height: 18px;
}

.bar-graph-votes-label {
    display: flex;
    color: white;
    font-size: 15px;
    font-weight: 300;
    overflow: hidden;
    align-self: center;
    justify-content: center;
}

.bar-graph-plus-one-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 3px;
    cursor: pointer;
    background-color: black;
    color: white;
    margin-left: 2px;
    height: 12px;
    padding: 2px;
}

.bar-graph-plus-one-container:hover {
    background-color: white;
}

.bar-graph-plus-one-container:hover > h3 {
    color: black;
}

.bar-graph-plus-one-label {
    display: flex;
    font-weight: 300;
    font-size: 12px;
    align-self: center;
}

.TUWTP-thank-you-text {
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 12px;
    text-align: center;
    transition: all 0.3s ease;
    animation: animatedText 3s infinite alternate-reverse;
}

@keyframes animatedText {
  to{
    background-position: 100%; 
  }
}

.load-more-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    background-color: black;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

.load-more-div:hover {
    background-color: white;
    color: black;
}

/* Styles for the modal */
.memory-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
  
.modal-content {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid rgb(0, 255, 251);
    width: 80%;
    position: relative;
    text-align: center;
}

.modal-content h2 {
    font-size: 24px;
}

.modal-content h5 {
    font-size: 19px;
}

.modal-content p {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.modal-content a {
    text-decoration: underline;
    cursor: pointer;
    color: white;
}

.modal-content a:hover {
    opacity: 0.6;
}

.close-modal {
    position: absolute;
    top: 2%;
    right: 1%;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    opacity: 0.6;
    text-decoration: none;
    cursor: pointer;
}

.emojis {
    display: flex;
    flex-direction: row;
    column-gap: 2px;
    margin: 2px 0 10px 0;
    flex-wrap: wrap;
}

.emojis input {
    width: 27px;
    height: 27px;
    padding: 4px;
    background-color: black;
    cursor: pointer;
    border: 1px solid black;
}

.emojis div {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.emojis h6 {
    background-color: white;
    color: black;
    padding: 2px;
    text-align: center;
    font-size: 12px;
    margin: 0 5px 0 5px
}

.disclaimer {
    font-size: 9px !important;
}

.spacer {
    margin: 10px 0 10px 0;
}

/* Media query for screens smaller than 900px */
@media only screen and (max-width: 900px) {
    .header {
      padding: 10px 0px 75px 0px;
    }

    .random-song-flex {
        margin-top: 0px;
    }

    #header-shows-link {
        border-bottom: 1px solid rgba(0, 255, 251, 1);
    }
    .form-entry {
        font-size: 11px;
    }
}

@media (pointer: fine) {
    .emojis input:hover {
        background: rgb(0, 255, 251) !important;
        opacity: 0.75;
    }
}