/* Webcam styles */
.webcam-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    height: 225px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid #333;
    z-index: 1000;
    transition: all 0.3s ease;
}

.webcam-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.webcam-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    /* Mirror effect */
}

.webcam-container.hidden {
    display: none;
}

.webcam-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}