/* Write Your CSS */

.filter-card-header {
    padding: 10px;
    /* cursor: pointer; */
}

.react-flow__renderer {
    z-index: 1;
}
  
.react-select__menu {
    z-index: 9999 !important;
}  

/* Container for camera and controls */
.camera-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.camera-wrapper {
    position: relative;
    width: 400px;
    height: 300px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-stream {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.capture-btn, .start-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.capture-btn:hover, .start-btn:hover {
    background-color: #0056b3;
}

.capture-btn:disabled, .start-btn:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

.captured-image {
    margin-top: 20px;
    text-align: center;
}

.img-preview {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
}

  