.chocoqr-window {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 280px;
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 5px;
    user-select: none;
}

.chocoqr-header {
    font-size: 14px; 
    font-weight: bold;
    color: #32373b;
    cursor: move; 
    padding: 5px 10px; 
    margin: -5px -5px 10px -5px; 
    background-color: #e9e9e9; 
    border-radius: 8px 8px 0 0; 
    border-bottom: 1px solid #dee2e6;
    user-select: none;
}

.chocoqr-close-btn {
    position: absolute;
    top: 1px;
    right: 5px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chocoqr-close-btn:hover {
    background-color: #f8f9fa;
    color: #333;
}

#chocoqr-container {
    text-align: center;
}

.chocoqr-spinner {
    border: 2px solid #007bff; 
    border-radius: 50%; 
    border-top-color: transparent; 
    width: 30px; height: 30px; 
    animation: spin 1s linear infinite;
}