﻿.camera-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

#cameraFeed {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.camera-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.btn-switch, .btn-capture {
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 30px;
    font-weight: bold;
    opacity: 0.9;
}

.btn-switch {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.btn-capture {
    background: rgba(255, 0, 0, 0.8);
    color: white;
}

    .btn-switch:hover, .btn-capture:hover {
        opacity: 1;
    }
