/* Full-Screen Fix */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

body {
    background-color: #70bd4c; /* Light green from palette */
    text-align: center;
    font-family: Arial, sans-serif;
}

.container {
    margin-top: 50px;
}

button {
    padding: 15px 25px;
    font-size: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
}


button:hover {
    background-color: #ce9853; /* Slightly lighter orange */
}

.hidden {
    display: none;
}

/* Full-Screen Video */
#videoContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

/* Ensure Video is Shown */
video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Stop Recording Button */
#stopRecording {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 145, 0, 0.9);
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 999;
}

/* Hide Initially */
.hidden {
    display: none;
}

/* Sending Message Screen */
#sendingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}