/* assets/css/tools/qr-code-generator.css */
.qr-code-tool .tool-card-specific {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: var(--benefit-card-border);
    background: var(--dark-menu-bg);
    box-shadow: var(--tool-card-shadow);
    border-radius: 8px;
    margin-top: 15px;
}

.qr-code-tool .tool-textarea {
    min-height: 120px;
    resize: vertical;
}

.qr-customization {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
   
}

.customization-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.customization-group input[type="range"] {
    width: 100%;
    accent-color: var(--primary-medium);
}

.customization-group input[type="color"] {
    width: 100%;
    height: 40px;
    border: 1px solid var(--primary-light);
    border-radius: 4px;
    background: var(--tool-card-bg);
    cursor: pointer;
}

.qr-result-container {
    text-align: center;
    padding: 1.5rem;
    background: var(--tool-card-bg);
    border-radius: 8px;
    box-shadow: var(--tool-card-shadow);
    display: none;
}

.qrcode-display {
    margin: 0 auto;
    padding: 15px;
    background: white;
    border-radius: 8px;
    display: inline-block;
}

.qr-result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-download {
    background: var(--primary-gradient);
    color: white;
}

.btn-reset {
    background: var(--secondary-gradient);
    color: white;
}

@media (max-width: 768px) {
    .qr-customization {
        grid-template-columns: 1fr;
    }
    
    .qr-result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-result-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}