/* Custom Scrollbar for the controls panel */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}

/* Ensure inputs don't have default outline but use our ring */
input:focus, textarea:focus, select:focus {
    outline: none;
}

/* Print optimizations */
@media print {
    aside, header {
        display: none;
    }
    main {
        display: block;
        width: 100%;
        height: auto;
    }
    #qr-preview-container {
        box-shadow: none;
        border: none;
    }
}
