.ff-scan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.ff-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.ff-modal-content {
    position: relative;
    z-index: 1000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    text-align: center;
}

.ff-btn-scan {
    padding: 12px 25px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    margin: 10px 0;
}

.ff-btn-scan:hover {
    background: #45a049;
    transform: scale(1.05);
}

.ff-btn-close {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000001;
}

#ff-qr-reader {
    border: 3px solid #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

#ff-qr-reader__dashboard_section {
    background: rgba(0,0,0,0.8) !important;
    padding: 15px !important;
}