/* Android Camera Overlay - iPhone style */
.android-camera-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
}

#androidCameraVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.android-captured-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.camera-cancel-btn {
    position: absolute;
    left: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    padding: 10px;
}

.camera-capture-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.camera-text-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    padding: 15px 25px;
}

#cameraRetakeBtn {
    position: absolute;
    left: 20px;
}

#cameraUsePhotoBtn {
    position: absolute;
    right: 20px;
    font-weight: 600;
}
