

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    color: #333;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 25px 25px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Logo Section */
.header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.header-logos img {
    height: 40px;
    object-fit: contain;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
}

/* Titles */
.welcome-text {
    font-size: 14px;
    color: #364153;
    margin-bottom: 8px;
}

.main-title {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: #101828;
    margin-bottom: 30px;
}

/* Input Field */
.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: #00acc1;
}

.plate-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    outline: none;
    color: #333;
}

.plate-input::placeholder {
    color: #9ca3af;
}

/* Reminder Box */
.reminder-box {
    background-color: #dcf1f7;
    border-radius: 15px;
    padding: 15px;
    text-align: left;
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.reminder-box svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    fill: #00acc1;
}

.reminder-text {
    font-size: 12px;
    font-family: 'Georgia', serif;
    font-weight: 500;
    font-style: normal; 
    color: #445;
}

.reminder-text strong {
    font-weight: 700;
}

.reminder-subtext {
    margin-top: 15px;
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color: #002154;
    color: white;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 25px;
}

/* Circle Icons Section */
.icon-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    height: 55px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    width: 32px;
    height: 32px;
    fill: #00acc1;
}

/* Footer List */
.footer-line {
    border-top: 1px solid #eee;
    margin-bottom: 30px;
}

.footer-instruction {
    font-size: 12px;
    color: #364153;
    margin-bottom: 20px;
    padding: 0 10px;
    gap: 20px;
}

.location-list {
    text-align: left;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #364153;
}

.location-item svg {
    width: 18px;
    height: 18px;
    fill: #00acc1;
}

.invalid-feedback{
    width:100%;
    margin-top: 2px;
    margin-bottom: 15px;
    font-size:.875em;
    color: #F8285A
}

.wrapper {
    width: 100%;
    max-width: 450px;
    padding: 25px 25px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.info-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 50px 30px;
    margin-bottom: 40px;
    background-color: #FAFAFA;
    stroke: #D1D5DC;
}

.plate-number {
    font-size: 30px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.label-text {
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #333333;
    opacity: 45%;
    margin-bottom: 40px;
    display: block;
}

.details-list {
    text-align: left;
    width: 100%;
    padding: 15px;
}

.detail-item {
    display: flex;
    justify-content: flex-start; 
    gap: 50px;                   
    margin-bottom: 25px;
    font-size: 16px;
}

.detail-label {
    color: #333333;
    font-family: Georgia;
    font-size: 14px;
    font-weight: normal;
    opacity: 45%;
    min-width: 100px;        
}

.detail-value {
    color: #333333;
    font-weight: 400;
    font-family: 'Inter';
    font-size: 14px;
    text-align: left;
}

.detail-value-time {
    color: #333333;
    font-weight: 400;
    font-family: 'Inter';
    font-size: 12px;
    text-align: left;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    padding-bottom: 20px;
}

.btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    overflow: visible;
}

.btn:active {
    opacity: 0.8;
}

.btn-back {
    background-color: #fff;
    color: #b91c1c;
    border: 1.5px solid #b91c1c;
}

.btn-proceed {
    background-color: #002154;
    color: #fff;
    border: none;
}

.exited-header {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.exited-detail {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}


.error-header {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.error-detail {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.paid-already-header {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.qr-additional-payment {
    padding-bottom: 10px;
}

.divider-pipe {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

/* Timer Section */
.timer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.timer-label {
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 16px;
    color: #111;
}
.timer-box {
    border: 1.5px solid #c62828;
    border-radius: 8px;
    padding: 8px 30px;
    color: #c62828;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* QR Code Section */
.qr-section {
    margin-bottom: 30px;
}
.qr-code {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}
.qr-text {
    font-family: 'Georgia', serif;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* Details Card */
.details-card {
    background-color: #fcfcfc;
    border: 1px solid #efefef;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    margin-bottom: 20px;
}
.details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}
.details-label {
    font-family: 'Georgia', serif;
    color: #333333;
    font-size: 14px;
    opacity: 45%;
}

.details-label-total {
    font-family: 'Georgia', serif;
    color: #333333;
    font-size: 18px;
    opacity: 45%;
}

.details-value {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
}
.hr {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 20px 0;
}
.total-row .details-value {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

/* Button */
.btn-download {
    background-color: #001a41;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}
.btn-download:hover {
    background-color: #002b6b;
}

.receipt-view {
    padding-top: 30px;
}

.receipt-card {
    border: none;
    border-radius: 8px;
}

.receipt-body {
    flex: 1 1 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #FAFAFA;
    stroke: #D1D5DC;
    color: #565657
}

.text-small {
    font-size: small;
}

.transactions-table {
    width: 100%;
}

.receiptHeader {
    font-size:calc(1rem - 2px);
}

.receiptHeader2 {
    font-size:calc(1rem - 1px);
}

.receiptDash {
    border-bottom: 1px dashed #000;
}

.receiptInfo1 {
    font-size:calc(1rem - 2px); gap: 34px;
}

.receiptInfo2 {
    font-size:calc(1rem - 2px); gap: 34px;
}

.receiptInfo3 {
    font-size:calc(1rem - 2px); gap: 43px;
}

.receiptInfo4 {
    font-size:calc(1rem - 2px); gap: 37px;
}

.receiptInfo5 {
    font-size:calc(1rem - 2px); gap: 69px;
}

.receiptInfo6 {
    font-size:calc(1rem - 2px); gap: 54px;
}

.receiptInfo7 {
    font-size:calc(1rem - 2px); gap: 33px;
}

.receiptInfo8 {
    font-size:calc(1rem - 2px);
}

.receiptInfo9 {
    padding-left: 4.95rem; padding-right: 3rem;
}

.receiptInfo10 {
    padding-left: 2.8rem; padding-right: 3rem;
}

.receiptInfo11 {
    padding-left: 4.78rem; padding-right: 3rem;
}

.receiptInfo12 {
    padding-left: 7.2rem; padding-right: 3rem;
}

.receiptInfo13 {
    padding-left: 7.26rem; padding-right: 3rem;
}

.receiptInfo14 {
    padding-left: 2.1rem; padding-right: 3rem;
}


.receiptInfo15 {
    padding-left: 2.16rem; padding-right: 3rem;
}


.receiptInfo16 {
    padding-left: 2.9rem; padding-right: 3rem;
}


.receiptInfo17 {
    padding-left: 2.76rem; padding-right: 3rem;
}


.receiptInfo18 {
    flex: 1; border-bottom: 1px solid #000; margin-left: 0.5rem;
}

.receiptInfo19 {
    font-size:calc(1rem - 2px); gap: 31px;
}

.pb-2 {
    padding-bottom: .5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.text-start {
    text-align: left !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: .15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}


.btn.disabled,.btn:disabled,fieldset:disabled .btn{
    color: #fff;
    pointer-events:none;
    background-color:#002154;
    border-color: #002154;
    opacity: 0.65;
    box-shadow:none
}

.spinner-border-sm{
    --bs-spinner-width:1rem;
    --bs-spinner-height:1rem;
    --bs-spinner-border-width:0.2em
}