/* file: /plugins/moncierge/css/custom.css */

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

h1 {
    color: #333;
    text-align: center;
}

#interactive.viewport {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 4 / 3; /* Adjust this ratio based on your camera's aspect ratio */
    border: 2px solid #333;
    margin: 20px 0;
    overflow: hidden;
}

#interactive video {
    width: 100%;
    height: auto;
    display: block;
}

#result-container {
    margin-top: 20px;
    font-size: 2em; /* Large font size for better visibility */
    color: #333;
}

#result {
    font-size: 1.5em;
    color: #000;
    text-align: center;
}
