﻿
#mainContainer {
    width: 100%;
    height: 100%;
    background-color: lightslategray;
}

#shadowOverlay {
    box-shadow: inset 0 0 15px #000000;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index:999;
    pointer-events: none;
}


#otherVideos {
    position: fixed;
    left: 0rem;
    bottom: 0rem;
    display: flex;
}

#otherVideos > div {
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 40%);
    transform-origin: bottom left;
    margin: 0.5rem;
    transition: width 0.5s;
    transition: height 0.5s;
}

#otherVideos > div > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#garageVideo {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#garageVideo > div{
    width: 100%;
    height: 100%;
}
#garageVideo > div > video {
    width: 100%;
    height: 100%;
}


.recording_btn {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border: 0;
    width: 5rem;
    background-color: #dddddd90;
    margin: 1.5rem 0.3rem;
    border-radius: 1rem;
    align-items:center;
}

.recording_btn > p{
    margin: 0;
    font-weight: bold;
    font-size: small;
    margin-block-start:0;
    margin-block-end: 0;
    padding: 0;
    width: 6rem;
}


.recording_btn_img {
    width: 100%;
}

#recordingControls {
    position: fixed;
    right: 0.5rem;
    bottom: -0.5rem;
}

#nav_controls {
    position: fixed;
    left: 1rem;
    top: 1rem;
}

.recording_remaining_duration {
    position: absolute;
    color: white;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    font-size: smaller;
}

.recording_ends_soon {
    color: red;
    font-weight: bold;
    font-size: x-large;
}

.confirm_license_bar {
    background: #ffd500bb;
    position: absolute;
    font-size: 1rem;
    border-radius: 1rem;
    color: white;
    left: 50%;
    transform: translate(-50%, 0);
    font-weight: bold;
    padding: 0.5rem;
    bottom: 11rem;
    text-align: center;
    max-width: 15rem;
    max-height: 12rem;
}

.confirm_license_bar > p {
    margin: auto 0;
}

.confirm_license_bar > input {
    font-size: 1.5rem;
    font-weight: bold;
    width: 10rem;
}

#confirm_ok_close {
    min-width: 5rem;
}