﻿.Options {
    height: 100vh;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: black;
}

.options-header {
    margin-bottom: 2rem;
}

.options-container {
    display: flex;
}

.options-devices {
    padding-right: 5rem;
}

.options-preview {
    display: flex;
    flex-direction: column;
}

.selections {
    margin: .5rem;
}

.selection {
    width: 35rem;
}

#joinButton {
    width: 8rem;
    height: 3.5rem;
    /* background-color: #85b140; */
    background-color: #28b351;
    color: white;
    font-size: 1.5rem;
    margin: 2rem;
    border-radius: 0%;
    transition: all 0.25s ease-in-out;
}

#joinButton:hover:enabled {
    cursor: pointer;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#joinButton:disabled {
    opacity: 0.5;
}

.label {
    font-size: 1.5rem;
}

select {
    background-color: white;
    color: black;
    padding: 8px 16px;
}

option {
    padding: 8px 16px;
}

#audio-preview {
    min-width: 137px;
    max-width: 137px;
    margin: 2rem 0;
}

#video-preview {
    max-width: 137px;
    max-height: 82px;
    border-radius: 8px;
    margin: 2rem 0;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 450px) {
    .options-header {
        font-size: 1.5rem;
    }

    .selection {
        width: 20rem;
    }

    select {
        width: 15rem;
    }

    #audio-preview {
        min-width: 80px;
        max-width: 80px;
    }

    #video-preview {
        max-width: 80px;
        max-height: 52px;
        border-radius: 8px;
        margin: 2rem 0;
    }

    #joinButton {
        width: 60px;
        height: 25px;
        font-size: 10px;
    }
}
