body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    position: relative; /* Needed to position the start button */
}

#startButton {
    position: absolute;
    top: 20px; /* Distance from the top */
    right: 20px; /* Distance from the right */
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#startButton:hover {
    background-color: #0056b3;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px; /* Space between checkbox and label text */
}

#detectionResult {
    font-size: 1.2em;
    color: #009688;
    border: 1px solid #009688;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    visibility: hidden; /* Hidden by default */
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-text {
    margin-left: 8px;
    pointer-events: none; 
}