.form-control {
    border: 1px solid #ced4da;
}

.form-control-long {
    border: 1px solid #ced4da;
    display: block;
    width: 100%;
}

/*.form-control-long {
    border: 1px solid #ced4da;
    height: 80px !important;
}*/

body {
    color: #212529;
}

.custom-table th, .custom-table td {
    font-size: 10px;
}

.custom-table tbody tr {
    font-size: 8px;
}

.message-cell {
    word-wrap: break-word;
    max-width: 300px; /* Adjust the maximum width as needed */
}

/*textarea.form-control-long {
    height: auto;
}*/

body {
    color: #212529;
}

.custom-table th, .custom-table td {
    font-size: 14px;
}

.custom-table tbody tr {
    font-size: 8px;
}

.message-cell {
    word-wrap: break-word;
    max-width: 300px; /* Adjust the maximum width as needed */
}

body {
    font-family: "San Francisco", "Poppins", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

#success-message {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

#qrcode-message {
    text-align: center;
}

p {
    /*color: #555;*/
}

.qr-code {
    margin: 20px 0;
}

/* qr code format */
.large-bold-email {
    font-size: 400%; /* 4 times larger */
    font-weight: bold;
}

.large-bold-gate {
    font-size: 200%; /* 4 times larger */
}

.printable-area {
    text-align: center; /* This will center the text within the .printable-area */
}

/*.small-qr {
    width: 350px; !* Adjust the width as needed *!
    height: auto; !* Maintain the aspect ratio *!
    border: 2px solid #ccc; !* Optional: Add a border *!
    border-radius: 5px; !* Optional: Add rounded corners *!
}*/

.button-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

form {
    margin: 0;
}

.btn.btn-primary-blue, button {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn.btn-primary-blue:hover, button:hover {
    color: #fff;
    background-color: #0066cc !important;
    border-color: #0066cc !important;
}

.btn.btn-primary, button {
    color: #212529;
    background-color: #FFA500;
    border-color: #FF8C00;
}

/*.btn.btn-primary:hover, button:hover {
    color: #212529;
    background-color: red !important;
    border-color: #FF8C00 !important;
}*/

/*.btn.btn-primary-green, button {
    color: #212529;
    background-color: #FFA500;
    border-color: #FF8C00;
}

.btn.btn-primary-green:hover, button:hover {
    color: #212529;
    background-color: #FFA500 !important;
    border-color: #FF8C00 !important;
}*/

.btn.btn-success:hover, button:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.qr-code-box {
    padding: 30px;
    margin: 30px;
    background-color: #ecf0f1;
    align-items: center;
}

/*
 * This CSS will hide everything by default when printing and then show the element you want to print
 */
/*@media print {
    body * {
        display: none;
    }

    .printable {
        display: block;
    }

    .printable * {
        display: block;
    }
}*/

/*
 * To center the elements within the qr-code-box div, you can use CSS Flexbox or CSS Grid.
 */
.qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* To center the text inside the h5 elements */
    margin: auto; /* To center the div itself if it's a child of a flex or grid container */
    border-radius: 8px; /* Adjust the value as needed for rounder corners */
    border: 0px solid #ccc; /* Optional: Add a border for better visibility */
    padding: 20px; /* Optional: Add some padding inside the box */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/ /* Optional: Add a subtle shadow */
}

.qr-code-box .qr-code {
    margin: 10px 0; /* Add some spacing between the elements */
}

.qr-code-box .button-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Add some spacing between the buttons */
}

.small-header {
    font-size: 18px; /* Adjust to your preferred size */
    /*font-weight: bold;*/
}

.medium-header {
    font-size: 24px; /* Adjust to your preferred size */
    /*font-weight: bold;*/
}

form {
    display: inline;
    margin-top: 0em;
    unicode-bidi: isolate;
}

.large-icon {
    font-size: 21px !important;
    margin-left: 4px;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34; }