/* Özel stil tanımlamaları */
.qr-reader {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* QR kod yazdırma için stil */
@media print {
    body * {
        visibility: hidden;
    }
    #qrcode, #qrcode * {
        visibility: visible;
    }
    #qrcode {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}
:root {
    --primary-color: #173b67;
    --primary-dark: #122c4f;
}

/* Birincil renk sınıfları */
.bg-primary {
    background-color: var(--primary-color) !important;
}
.hover-bg-primary:hover {
    background-color: var(--primary-dark) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.focus-primary:focus {
    box-shadow: 0 0 0 3px rgba(23, 59, 103, 0.5) !important;
}
.border-primary {
    border-color: var(--primary-color) !important;
}
