* {
    margin: 0;
    padding: 0;
}
#video-container {
    width: 100%;
    height: 100%;
    position: relative;
}
#video-container video {
    left: 0;
    top: 0;
}
.button-interaction {
    width: 100px;
}

#buttons-holder{
    position: absolute;
    width: 200px;
    right: 100px;
    bottom: 20px;
    margin: auto;
    zindex: 9;
}

/*******Loading screen styles*******/

#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-out; /* Adjust the duration as needed */
    overflow: hidden;
}



/* Fade-out transition */
#loading.fade-out {
    opacity: 0;
}

#loading-message{
    position: absolute;
    display: flex;
    width: 393px;
    height: 122px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-family: Inter;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 0px 4px #004C34, 8px 8px 20px 0px rgba(0, 0, 0, 0.25);
    z-index: 10;
    backdrop-filter: blur(5px);
}

#loading-message-main-text{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #005333;
}

#small-loading-text{
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: italic;
    font-weight: 200;
    line-height: normal;
    color: #005333;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #005333;
    border-radius: 50%;
	min-height: 16px;
	min-width: 16px;
    width: 16px; !important;
    height: 16px; !important;
    animation: spin 2s linear infinite;
}

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

#refresh-link {
    text-decoration: underline;
    color: inherit; /* This keeps the link the same color as the surrounding text */
}

