body {
    background: #f7f8fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: center;
}
h1 {
    color: #222;
    margin-bottom: 12px;
}
p {
    color: #444;
    margin-bottom: 24px;
}
video {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #000;
}
.controls {
    margin-bottom: 16px;
}
button {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    margin: 0 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button:disabled {
    background: #b0b0b0;
    cursor: not-allowed;
}
#status {
    color: #0078d4;
    font-weight: 500;
    margin-top: 10px;
}







#video,
#photo {
    border: 1px solid black;
    box-shadow: 2px 2px 3px black;
    width: 100%;
    height: auto;
}

#canvas {
    display: none;
}

.camera,
.output {
    display: inline-block;
    width: 49%;
    height: auto;
}

.output {
    vertical-align: top;
}
