.webcam-container {
    margin: 0 0 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

.webcam-container h3 {
    margin-top: 0;
}

.webcam-image {
    width: 100%;
    max-width: 900px;
    margin: 15px auto;
    display: block;
    border-radius: 6px;
}

.progress-container {
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #2b7abf;
}

.webcam-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.webcam-controls button {
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    background: #2b7abf;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.webcam-controls button:hover {
    background: #1d5d93;
}

.webcam-controls button:disabled {
    background: #bbb;
    cursor: default;
}