:root {
    --blue: #11277B;
    --text: #ffffff;
    --label: #ffffff6b;
    --bg: #f3f6fb;
    --card-bg: #ffffff;
}

* {
    box-sizing: border-box;
}


body {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.ticket-wrapper {
    width: 100%;
    max-width: 767px;
    height: 100vh;
    overflow: hidden;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
}

.admin-screen .ticket-wrapper {
    height: auto;
}

.ticket-wrapper .qr-header {
    background: #fff;
    padding: 18px 16px 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 2;
}

.admin-screen .ticket-wrapper .qr-header {
    position: static;
}

.ticket-wrapper .qr-heading {
    margin: 0 0 20px;
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.ticket-wrapper .qr-image img {
    max-width: 130px;
}

.ticket-wrapper .qr-code-text {
    font-size: 15px;
    color: #222;
    font-weight: 700;
    margin: 4px 0 0;
}

.ticket-wrapper .info {
    background: var(--blue);
    color: var(--text);
    padding: 18px 18px 30px;
    flex: 1;
    overflow-y: auto;
}

.ticket-wrapper .info::-webkit-scrollbar {
    display: none;
}

.ticket-wrapper .form-field {
    margin-bottom: 18px;
}

.ticket-wrapper label {
    color: var(--label);
    text-transform: uppercase;
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.ticket-wrapper p {
    background: transparent;
    border-bottom: 2px solid #fff;
    width: 100%;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    padding: 4px 0 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 40px;
}

.ticket-wrapper .seat-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.ticket-wrapper .seat-grid {
  border-bottom: 2px solid #fff;   /* one line under the block */
  padding-bottom: 8px;             /* match spacing with other fields */
  margin-bottom: 18px;             /* keep vertical rhythm */
}

/* Keep each p clean so the block shows a single line */
.ticket-wrapper .seat-grid p { border: none; }


.qr-image__code input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    font-size: 16px;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
}

.qr-image__actions {
    margin-bottom: 30px;
    text-align: center;
}

.qr-image__actions button {
    background: #ddd;
    color: #000;
    border: 1px solid #ddd;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

.qr-image__actions button:hover {
    background: #333 !important;
    color: #fff;
}

.qr-image__actions button#dl {
    background: transparent;
    border: 0;
}

.save_dataBtn {
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin: 30px 0 0;
    width: 100%;
}

.admin-screen .getField input {
    background: transparent;
    padding: 3px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid #fff;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    width: 100%;
    text-transform: uppercase;
}

.admin-screen .getField input:focus,
.admin-screen .getField input:hover {
    outline: none;
    box-shadow: none;
}
