body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #1e293b;
    color: white;
    padding: 15px 30px;
    border-bottom: 2px solid #3b82f6;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.sub {
    font-size: 1.2rem;
    margin-top: 5px;
}

.right {
    text-align: right;
}

.txt-sm {
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 1000;
    font-size: 0.95rem;
}

.col1 { color: rgb(255, 53, 53); }
.col2 { color: rgb(53, 107, 255); }
.col3 { color: rgb(100, 255, 53); }
.col4 { color: rgb(252, 255, 53); }

.main {
    display: flex;
    gap: 25px;
    padding: 25px;
}

.panel {
    width: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid grey;
    box-shadow: 0 8px 20px rgba(61, 163, 160, 0.2);
}

.side {
    width: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid grey;
    box-shadow: 0 8px 20px rgba(38, 168, 186, 0.2);
}

.content {
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.field {
    margin-bottom: 15px;
}

.lbl {
    font-size: 0.9rem;
}

.inp {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #acacad6c;
}

#name {
    text-transform: uppercase;
    color: #ccc;
}

#age {
    text-transform: uppercase;
}

.sec {
    margin-top: 10px;
}

.head {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.choices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.opt {
    background-color: #524d4d96;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    border: 2px solid grey;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.opt:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 8px #fff,
        0 0 8px #fff,
        0 0 8px rgb(255, 53, 53),
        0 0 8px rgb(255, 53, 53),
        0 0 8px rgb(255, 53, 53);
}

.opt2:hover {
    box-shadow:
        0 0 8px #fff,
        0 0 8px #fff,
        0 0 8px rgb(53, 107, 255),
        0 0 8px rgb(53, 107, 255),
        0 0 8px rgb(53, 107, 255);
}

.opt3:hover {
    box-shadow:
        0 0 8px #fff,
        0 0 8px #fff,
        0 0 8px rgb(100, 255, 53),
        0 0 8px rgb(100, 255, 53),
        0 0 8px rgb(100, 255, 53);
}

.opt4:hover {
    box-shadow:
        0 0 8px #fff,
        0 0 8px #fff,
        0 0 8px rgb(252, 255, 53),
        0 0 8px rgb(252, 255, 53),
        0 0 8px rgb(252, 255, 53);
}

.opt.active {
    transform: translateY(-5px);
    border: 3px solid #22c55e;
    background-color: rgba(34, 197, 94, 0.2);
    box-shadow:
        0 0 8px #fff,
        0 0 8px #22c55e,
        0 0 15px rgba(34, 197, 94, 0.6);
    cursor: default;
}

.opt1.active {
    border-color: rgb(255, 53, 53);
    box-shadow: 0 0 15px rgb(255, 53, 53);
}

.opt2.active {
    border-color: rgb(53, 107, 255);
    box-shadow: 0 0 15px rgb(53, 107, 255);
}

.opt3.active {
    border-color: rgb(100, 255, 53);
    box-shadow: 0 0 15px rgb(100, 255, 53);
}

.opt4.active {
    border-color: rgb(252, 255, 53);
    box-shadow: 0 0 15px rgb(252, 255, 53);
}

.time-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.price {
    margin-top: 25px;
    background: #515762;
    padding: 15px;
    border-radius: 25px;
    text-align: right;
    box-shadow:
        0 0 5px #ffffffa0,
        0 0 10px #ffffffa5,
        0 0 10px #bdbfbd80,
        0 0 15px #8d8f8d75,
        0 0 5px #66676784;
}

.price-lbl {
    font-size: 0.9rem;
}

.price-tot {
    font-size: 1.5rem;
    font-weight: bold;
}

.time-end {
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 18px 25px;
    border: none;
    border-radius: 25px;
    background: #05ed3bd2;
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: #05f887e1;
}

.btn:active {
    transform: scale(0.97);
}

.current {
    margin-top: 20px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 10px;
    border: 2px dashed #22c55e;
}

.note {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
}

.note p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.note .tot {
    font-size: 1.2rem;
    font-weight: bold;
    color: #22c55e;
    margin-top: 10px;
}

.btn-ok {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-ok:hover {
    background: #16a34a;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.tab.active {
    background-color: #0ce72d39;
    box-shadow: 0 0 10px #16f52980;
}

.tab-box {
    background-color: transparent;
    border-radius: 10px;
    padding: 15px;
    border: 2px solid grey;
}

.cart-list {
    max-height: 300px;
    overflow-y: auto;
}

.empty {
    text-align: center;
    padding: 20px;
    color: #ccc;
}

.cart-btns {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-yes {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #22c55e;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.history {
    margin-top: 25px;
    background-color: transparent;
    border-radius: 10px;
    padding: 15px;
    border: 2px solid grey;
}

.history-head {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.orders {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.order-item p {
    margin: 3px 0;
    font-size: 0.85rem;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-no {
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    background: #ef4444;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-edit {
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    background: #f59e0b;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-clear {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #e53e3e;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.editing {
    margin-top: 10px;
    padding: 10px;
    background-color: #fbbf24;
    color: black;
    border-radius: 8px;
    font-weight: bold;
}

.btn-done {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-done:hover {
    background: #2563eb;
}

.blurred {
    filter: blur(5px);
    opacity: 0.5;
    pointer-events: none;
}

.overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 197, 94, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 999;
}

.overlay.show {
    display: block;
}

.btn-update {
    padding: 10px 20px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    background-color: #f59e0b;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.btn-update:hover {
    background-color: #d97706;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-edit {
    flex: 1;
}

.btn-no {
    flex: 1;
}

.btn-done {
    width: 100%;
    margin-top: 10px;
}

.ft {
    background-color: #0b1120;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #64748b;
    border-top: 1px solid #1e293b;
}
