.kyc-photo-container {
    max-width: 500px;
    margin: 0 auto;
}
.kyc-inst-document {
    max-width: 70%;
    margin: auto;
    display: block;
}
.kyc-btn {
    background: #57ad44;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin: 8px 0;
    transition: background 0.3s;

    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
}

.kyc-btn:hover {
    background: #005a87;
}

.kyc-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.kyc-btn-secondary {
    background: #666;
}

.kyc-btn-secondary:hover {
    background: #555;
}

.kyc-btn-danger {
    background: #dc3545;
}

.kyc-btn-danger:hover {
    background: #c82333;
}

.kyc-camera-container {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin: 16px 0;
}

.kyc-video, .kyc-preview-img {
    width: 100%;
    height: auto;
    display: block;
}

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

.kyc-control-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kyc-capture-btn {
    background: #ff4444;
    color: white;
    width: 80px;
    height: 80px;
    font-size: 30px;
}
.kyc-capture-btn {
    background: #ffffffd1;
    color: white;
    width: 80px;
    height: 80px;
    font-size: 30px;
}
.kyc-capture-btn.kyc-control-btn:after {
    content: "";
    width: 60px;
    height: 60px;
    background: #ffffff;
    display: block;
    position: absolute;
    border-radius: 100%;
    border: 3px solid #000;
}
.kyc-hidden {
    display: none;
}

.kyc-preview-container {
    text-align: center;
    margin: 16px 0;
}

.kyc-preview-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kyc-status {
    /* padding: 12px; */
    border-radius: 4px;
    /* margin: 12px 0; */
    text-align: center;
}

.kyc-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.kyc-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.kyc-status.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.kyc-file-input {
    display: none;
}

@media (max-width: 768px) {
    .kyc-control-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .kyc-capture-btn {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}


.kyc-retake-btn {
    padding: 0;
    border: none;
    background: #e9ecef;
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
}
.kyc-retake-btn img {
    width: 35px;
}
.kyc-preview-container {
    position: relative;
}