html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
    background-color: #f0fff0;
    color: #006400;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #006400;
}

h1 {
    color: #006400;
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, .button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #006400;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

/* New style for select dropdown */
select {
    background-color: #ffffff;
    color: #006400;
    cursor: pointer;
    appearance: none;
    padding-right: 30px;
}

button {
    background-color: #006400;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

select:focus {
    border-color: #004d00;
    box-shadow: 0 0 5px rgba(0, 77, 0, 0.5);
}

input[readonly] {
    background-color: #f0f0f0;
    color: #808080;
    border: 1px solid #cccccc;
    cursor: not-allowed;
}

button:hover {
    background-color: #004d00;
}
@media print {
    .noprint {
        visibility: hidden;
    }
}
img {
    padding: 10px;
    background-color: #ffffff;
    width: 100%;
}

.qr-code-container {
    float: left;
}

.dt-length label {
    text-transform: capitalize
}

.small {
    width: 100px;
}