body {
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  margin: 0;

  @media (max-width: 1000px) {
      font-size: 28px;
  }
}

a {
  color: #00B7FF;
}

#main {
    width: 100%;
    text-align: center;
}

.button-container {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
}

.button {
    width: 50%;
    height: 80px;
    background-color: #cccccc;
    padding: 5px;
    margin: 10px;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;

    .button-text {
        visibility: visible;
    }

    @media (max-width: 1000px) {
        width: 100%;
        height: 140px;
        font-size: 2rem;
    }
}

#code-input {
    text-transform: uppercase;
    height: 80px;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 2rem;
}
#code-input-button {
    height: 80px;
    padding: 20px;
    font-size: 2rem;
}

#code-input-form {
    display:flex;
    flex-direction: column;
    align-content: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
}

.main-container {
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #AAAAAA;

    .nav-item {
        color: #000000;
        text-decoration: underline;
        margin: 0 10px;
        cursor: pointer;
        padding: 10px;
        font-size: 20px;

        @media (max-width: 1000px) {
            font-size: 80px;
        }
    }
}

.spinner-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px; height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dj-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dj-left-container {
    width: 50%
    @media (max-width: 1000px) {
        width: 100%
    }
}

#now-playing-header {
    font-size: 20px;
    padding: 10px;
}

#next-up-container {
    font-size: 20px;
    padding: 20px;
=}

.dj-now-playing-container {
    padding: 10px;
    border-top: 1px solid #000000;
    #now-playing-title {
        font-size: 24px;
        font-weight: bold;
        padding: 10px;
    }
    #now-playing-by {
        font-size: 20px;
        padding: 10px;
    }
    #now-playing-artist {
        font-size: 24px;
        font-weight: bold;
        padding: 10px;
    }
    #now-playing-control-panel {
        display: flex;
        height: 50px;
        width: 100%;
        justify-content: center;

        #next-button {
            width: 25%;
        }
    }
}

.dj-queue-container {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 10px;

    #dj-queue-title {
        margin: 10px;
        font-size: 24px;
        font-weight: bold;
    }

    .dj-song-queue-item {
        padding: 10px;
    }
}
.dj-right-container {
    width: 50%;
    @media (max-width: 1000px) {
        width: 100%
    }
}
.dj-search-container {
    height: 100%;

    #dj-search-title {
        padding:20px;
        font-size: 40px;
    }

    #dj-search-input-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 10px;
    }

    #singer-label {
        font-size: 3rem;
        padding: 10px
    }

    #search-label {
        font-size: 3rem;
        padding: 10px;
    }

    #dj-singer-input {
        padding: 10px;
        font-size: 3rem;
        text-align: center;
    }
    #dj-search-input {
        padding: 10px;
        font-size: 3rem;
        text-align: center;
    }

    #dj-search-button {
        padding: 10px;
        margin-top: 15px;
        font-size: 3rem;
    }

    #dj-search-results-container {
        width: 100%;
    }

    #dj-search-results {
        width: 100%;
    }

    .dj-search-result-thumbnail {
        width: 20%;
    }

    #dj-search-results-title {
        font-size: 20px;
        padding: 10px;
        font-size: 2rem;
    }

    .dj-search-result-name {
        padding: 10px;
        width: 50%;
    }

    .dj-search-result-item {
        width: 100%;
        min-height: 60px;
        text-align: left;
        display: flex;
        align-items: center;
        margin-top: 70px;
        justify-content: space-between;
    }

    .dj-search-queue-button {
        width: 30%;
        background-color: #cccccc;
        padding: 10px;
        border: 1px solid #000000;
        border-radius: 5px;
        text-align: center;
        height: 60px;
        align-content: center;
        cursor: pointer;
    }
}

#singer-button-line {
    display: flex;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    background-color: #ccc;
    margin-bottom: 10px;
}

#join-as-singer-button {
    width: 70%
}

#session-code-input {
    width: 30%;
    text-align: center;
    text-transform: uppercase;
}

#init-button {
    display: none;
    width: 50%;
    height: 80px;
    background-color: #cccccc;
    padding: 5px;
    tex-align: center;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

#video-container {
    width: 100%;
    height: 60vh;
}

#help-container {
    text-align: left;
    p {
        padding: 10px;
        font-size: 20px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        padding: 10px;
        font-size: 30px;
    }
}

#dj-song-added-confirmation {
    background: #ddffdd;
    font-size: 30px;
    padding: 20px;
    display: none;
}