/* Camera capture styles */
.camera-container {
    position: relative;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.camera-container video,
.camera-container img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Responsive design for mobile */
@media (max-width: 600px) {
    .camera-container video,
    .camera-container img {
        max-height: 400px;
    }
}

/* Camera button animations */
.mud-button-camera {
    transition: transform 0.2s ease-in-out;
}

.mud-button-camera:active {
    transform: scale(0.95);
}
