ul#objectList {
    border: 2px solid #ccc;
    /* Add a border around the list */
    padding: 10px;
    /* Add padding inside the border */
    max-width: 640px;
    /* Limit the maximum width of the list */
    margin: 20px auto;
    /* Center the list horizontally */
    list-style-type: none;
    /* Remove default list styles */
}

ul#objectList li {
    margin-bottom: 5px;
    /* Add spacing between list items */
    padding: 5px;
    /* Add padding inside each list item */
    background-color: #f9f9f9;
    /* Light background color for list items */
    border-radius: 5px;
    /* Add rounded corners to list items */
}


.video-container {
    position: relative;
    width: 640px;
    /* Adjust width as needed */
    height: 480px;
    /* Adjust height as needed */
}

#videoElement {
    position: absolute;
    top: 0;
    left: 0;
}

#canvasElement {
    position: absolute;
    top: 0;
    left: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
}

.navbar {
    background-color: #333;
    text-align: center;
}

.elements {display: flex;}

fieldset {
    min-width: 45%;
    text-align: center;
    color: #f4f4f4;
    border-radius: 5px;
}

#startButton {
    height: min-content;
    align-content: center;
}
.nav-link {
    display: inline-block;
    margin-right: 20px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #4CAF50;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

#startButton {
    display: block;
    margin: 0 auto 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: grey;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#videoElement {
    max-width: 100%;
    max-height: 100%;
}

#objectList {
    list-style-type: none;
    padding: 0;
}

#objectList li {
    margin-bottom: 5px;
    padding: 8px 15px;
    background-color: #007bff;
    color: black;
    border-radius: 5px;
}
