

main {
    display: flex;
    flex-direction: row;
}

#interactions-form {
    display: flex;
    flex-direction: column;
    width: 500px;
    padding-left: .5rem;
    gap: .3rem;
}

form button, input[type=button], .load-file-button {
    height: 2rem;
    width: 7rem;
    border: none;
    color:rgb(231, 244, 255);
    background-color: rgb(0, 150, 0);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: .3rem;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

form label {
    margin-top: .3rem;
}

.interaction input {
    border-radius: .3rem;
    border-style: solid;
    border-width: 1px;
}

.settings-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

#tracking-button {
    width: 11rem;
}

#tracking-button:disabled {
    opacity: .5;
    pointer-events: none;
}

#tracking-button.pause-button {
    background-color: rgb(150, 0, 0);
}

#save-button {
    width: 7rem;
}

#load-button {
    width: 8rem;
}

input[type='file'] {
    display: none;
}

.load-file-button {
    display: flex;
    width: 8rem;
    align-items: center;
    justify-content: center;
}

.interaction-container {
    display: flex;
    flex-direction: row;
    border-color: black;
    border: 2px;
    align-items: center;
    padding: .2rem;
    padding-right: 1.5rem;
    background-color: rgb(247, 247, 247);
}

.interaction-active {
    background-color: rgb(240, 255, 240);;
}

.interaction-column {
    display: flex;
    flex-direction: column;
    padding: .5rem;
}

.btn-delete {
    background-color: rgb(150, 0, 0);
}

.video-container {
    visibility: collapse;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#video {
    transform: scaleX(-1); 
    -webkit-transform: scaleX(-1); 
    visibility: hidden;
}