body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

#container {
    position: relative;
    display: inline-block;
    margin: 20px 0;
    max-width: 100%;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

#video-feed {
    border: 3px solid #333;
    border-radius: 10px;
    background-color: #000;
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#status {
    margin: 10px 0;
    font-weight: bold;
}

.detected-face {
    color: #2196F3;
}

.high-confidence {
    color: #4CAF50;
}

