:root {
    --primary-color: #41CD0A;
    --secondary-color: #595D58;
    --light-color: #fff;
    --dark-color: #000;
    --background-color: #eeeeee;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
body {
    font-family: 'Rubik', Arial, sans-serif;
    text-align: center;
   
    background-color: var(--background-color);
}
button, input, textarea, select {
    font-family: 'Rubik', Arial, sans-serif;
}
header {
    padding: 16px 0;
    background-color: var(--light-color);
}
header .link {
    display: flex;
    justify-content: center;
}
.container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.form-section {
    margin: 20px 0;
    background: var(--light-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
}

.input-field {
    width: 100%;
    padding: 10px ;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 99em;
    display: block;
    margin-top: 20px;
    color: #000;
    background-color: #fff;
    height: 37px;
    appearance: none;
    -webkit-appearance: none;
    
}
.input-arrow {
position: relative;
}
.input-arrow::after {
  position: absolute;
      
    content: '';
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url("images/chevron-selector-vertical-svgrepo-com.svg");
    width: 13px;
    height: 13px;
    z-index: 555;
    background-size: 100%;
    /* background: #000; */
    background-repeat: no-repeat;
}

.error {
    color: red;
    font-size: 12px;
    text-align: left;
}

.success {
    color: var(--primary-color);
    font-size: 12px;
    text-align: left;
}

.btn,.btn-clear {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 99em;
    color: var(--light-color);
    margin-top: 10px;
    font-weight: 500;
    cursor: pointer;

}
.btn {
    background-color: var(--primary-color);
}
.btn:hover {
    background-color: #288f00;
}
.btn-clear:hover {
    background-color: #454744;
}
.btn-clear {
    background-color: var(--secondary-color);
}

#qr-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.qr-code {
    padding: 10px;
    border: 1px solid #ccc;
    background: var(--light-color);
    display: inline-block;
}
.person-details {
    text-align: left;   
    margin-bottom: 15px;
}
.person-details p {
    margin: 0;
    line-height: 22px;
}
.ticket-title {
    margin: 20px 0;
}
.ticket-title span {
    font-weight: bold;
    font-size: 24px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 20px;
    border-radius: 99em;
    display: inline-block;
}
.ticket-number {
    margin-bottom: 10px;
}
.ticket-details {
    text-align: center;
}
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    place-items: center;
}
.share-link {
    display: inline-block;
    margin-left: 5px;
}
.share-link img{
    max-width: 20px;
    width: 100%;
}
.hide {
    display: none;
}
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 20px 0;

}
.company-logo {
    max-width: 135px;
    width: 100%;
    margin: 0 auto 20px auto;
}
.company-logo img {
    width: 100%;
}

.footer__wrap-m-company-get p {
    margin-top: 32px;
    font-weight: 500
}
.footer__wrap-m-company-get a {
    display: inline-block;
    margin: 20px 0 0 0
}
.footer__wrap-m-company-social a {
    margin: 20px 2vw 0 0;
    display: inline-block
}
.footer__wrap-d {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.footer__wrap-d-company-get p {
    font-weight: 500
}
.footer__wrap-d-company-get a {
    display: inline-block;
    margin: 20px 0 0 0
}
.footer__wrap-d-company-get a img {
    width: 130px;
    height: auto;
}
.footer__wrap-d-company-social p {
    font-weight: 500
}
.footer__wrap-d-company-social a {
    margin: 20px 4px 0 0;
    display: inline-block
}
.footer hr {
    border: none;
    height: 1.5px;
    color: #41cd0a;
    background-color: #41cd0a;
}
.footer__company-info p {
    margin-bottom: 5px;
    text-align: left;
    margin-top: 10px;
}
/* util class */
.bottom-footer{
    position: fixed;
    width: 100%;
    bottom: 0;
}

.disable-btns {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #cccccc;
}
.form-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 381px);
}
@media screen and (max-height: 750px) {
    .bottom-footer {
        position: relative;
    }
    .form-center {
        display: block;
        height: 100%;
    }
}

.qr-row {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjust spacing between tickets */
    margin-bottom: 20px;
}

.ticket-item {
    text-align: center;
    width: 50%; /* Ensures two tickets per row */
}

#qr-container{
    margin-top: 30px;
    margin-bottom: 30px; 
    text-align: center;
}