@font-face { 
    font-family: 'mindshare'; 
    src: url('fonts/Montserrat.ttf');
    font-display: swap;
}



body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Adjust to match your branding */
}

.topLogo{
    height: 35px;
    display: block;
    margin: 20px auto;
}
.interface_container, .welcomeScreen, .helpPage{
    display: none;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height:60%;
    width:90%;
    padding: 30px;
    margin: auto;
}
/* welcome screen */
.welcomeScreen{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}
.welcome_content_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.welcomeText{
    color: #ffb700;
    font-size: 4em;
    font-family: 'mindshare', sans-serif;
    margin-top: 10px;
    margin-bottom: 5px;
}

.welcomeSubText{
    color: #ffffff;
    font-size: 1em;
    font-family: 'mindshare', sans-serif;
}

.experienceBtnWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    width: 100%;
}

.experienceBtn{
    background-color: #ffb700;
    color: #1a1a1a;
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 27%;
    margin: 10px;
}
.finePrint{
    width: 55%;
    color: #ffffff;
    text-align: center;
    margin-top: 125px;
}
/* help page */

.helpPage{
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.helpVideo{
    width: 70%;
    margin: 20px;
}

.smallText{
    color: #ffffff;
}

/* studio interface */

.title_timer_wrapper{
    display: flex;
   align-items: flex-end;
}

.podStudio_title{
    color: #ffb700;
    font-size: 2.2em;
    font-family: 'mindshare', sans-serif;
    margin-top: 10px;
}

#progress{
    font-family: 'mindshare', sans-serif;
    color: #fff;
    margin-left: 10px;
    font-size: 2em;
}

.recordingTimeline{
    display: block;
    color: #fff;
    background-color: #222; /* Adjust to match your branding */
    padding: 10px;
    margin: 0;
    margin-bottom: 20px;
    border-radius: 6px;
    width: 100%;
    height: 120px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button_status_wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.actionBtn_wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.recordActionBtn{
    background-color: #ffb700; 
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 30%;
    margin-right: 10px;
}

.finishedRecording{
    display: none;
    background-color: #ccc;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 20%;
    margin-left: 10px;
}
.recordActionBtn:hover {
    background-color: #e69500; /* Adjust for hover effect */
}

.status_display{
    color: green;
    font-style: italic;
    display: flex;
    align-items: flex-end;
    font-size: 1em;
}


.reconnectButton{
    background-color: transparent;
    color: #ffb700;
    border: none;
    text-decoration: underline;
    font-style: italic;
    font-size: 1em;
}

.tutorialSnippit_wrapper{
    display: none;
    width: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 50px;
}

.videoSnippit{
    width: 90%;
}

.errorType{
    color: #ffb700;
    width: 100%;
}
.closeTutorialBtn{
    background-color: transparent;
    border: none;
    color: #ffb700;
    text-decoration: underline;
    margin: 20px;
}

.myRecording_title{
    color: #ffb700;
    font-size: 2em;
    text-align: center;
    width: 100%;
    font-family: 'mindshare', sans-serif;
    font-weight: bold;
}
.recordings{
    background-color: #3f3f3f;
    padding:0px;
    margin: 20px auto;
    margin-bottom: 20px;
    border-radius: 6px;
    width: 80%;
    border-top: 1px solid #000;
    height:fit-content;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.recordings > div{
    border-top: 2px solid #1a1a1a;
}

#loadingIndicator{
    color: #ccc;
    text-align: center;
    margin: auto;
    font-style: italic;
}

.playbackBtn , .emailRecordingBtn{
    background-color: #ffb700;
    color: #1a1a1a;
    padding: 10px;
    margin: 15px;
    border: none;
    padding: 10px;
    margin: 10px;
    width: 15%;
    border-radius: 6px;
}
.emailRecordingBtn{
    background-color: #ccc;
}

.downloadLink{
    text-decoration: none;
    color: #e69500;
    text-decoration: underline;
}
/* send recording email modal */

.emailModal{
    display: none;
    width: 50%;
    height: fit-content;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 1px -1px 16px 6px #000;
    padding: 20px;
    z-index: 20;
}

.emailModal > form{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.closeModalBtn{
    font-size: 1.2em;
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    background-color: transparent;
    border: none;
    margin:10px ;
}
.closeModalBtn:hover{
    color: #1a1a1a;
}

.sendRec_title_wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
}
.sendRec_sub_title{
    color: #000;
    font-size: 1em;
    font-family: 'mindshare', sans-serif;
    margin-bottom: 0px;
}
.sendRec_title{
    color: #ffb700;
    font-size:3em;
    font-family: 'mindshare', sans-serif;
    font-weight: bold;
    margin: 0px;
}

.labelInput_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px;
    width: 80%;
}

.toEmail{
    width: 80%;
    border: none;
    border-bottom: 2px solid #ccc;
    color: #1a1a1a;
    outline: none;
    font-size: 1.5em;
}

.toEmailLabel{
    color: #ccc;
    font-family: 'mindshare', sans-serif;
    text-align: center;
}

.sendRecEmailBtn{
    background-color: #ffb700; 
    color: #1a1a1a;
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 35%;
    margin: 10px;
}

/* video section */

.video_recordSection{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}

.cameraBlock{
    width: 35%;
    height: 175px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    
}
.cameraBlock.enabled {
    border: 2px solid #ffb700; /* Ensure this is visible */
}

.videoOverlay{
   
    position: absolute;
    z-index: 6;
    height: 100%;
    width: 100%;
    margin: 5px;
    padding: 0;
    border-radius: 6px;
}
.camName_bg{
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    background: linear-gradient(to top right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.533), 90%, rgba(0, 0, 0, 0.533) 100%);
    width: 75px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.camName{
    color: #ffb700;
    font-size: 1em;
    font-family: 'mindshare', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.videoFeeds{
    width: 100%;
}

.enableInstructions{
    color: #e69500;
    text-align: center;
    width: 100%;
}
.cameraBlock.enabled {
    border: 2px solid #ffb700; /* Ensure this is visible */
}

.videoPlaybackWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 20px solid #1a1a1a;
}
.videoPlaybackWrapper > video{
    border-radius: 6px;
    margin: 10px;
}
.downloadVideoBtn{
    border-radius: 6px;
    text-decoration: none;
    margin: 10px auto;
    color: #1a1a1a;
    background-color: #ffb700;
    width: 20%;
    padding: 10px;
}