﻿

.card {
    border-radius: 15px; /* Rounded corners for the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #ffffff; /* White card background */
}

.keypad-button {
    width: 100%; /* Make buttons take full width of their column */
    padding: 1.5rem 0.5rem; /* More padding for larger touch targets */
    font-size: 1.5rem; /* Larger font size for numbers */
    font-weight: bold;
    border-radius: 10px; /* Rounded corners for buttons */
    margin-bottom: 0.5rem; /* Space between buttons */
    transition: background-color 0.2s ease, transform 0.1s ease; /* Smooth transitions */
}

    .keypad-button:hover {
        transform: translateY(-2px); /* Slight lift on hover */
    }

.keypad-button-number {
    background-color: #e0e0e0; /* Light gray for number buttons */
    border-color: #d0d0d0;
    color: #333;
}

.keypad-button-action {
    background-color: #ffc107; /* Warning yellow for AC/C */
    border-color: #e0a800;
    color: #333;
}

.keypad-button-back {
    background-color: #dc3545; /* Danger red for BACK */
    border-color: #c82333;
    color: #fff;
}

.keypad-button-login {
    background-color: #28a745; /* Success green for LOGIN */
    border-color: #218838;
    color: #fff;
}

h1 {
    color: #343a40; /* Darker text for heading */
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.form-control-lg {
    height: calc(3.5rem + 2px); /* Adjust height for larger input */
    font-size: 1.5rem; /* Larger font for input */
    text-align: center; /* Center align text in input */
    border-radius: 10px; /* Rounded corners for input */
    background-color: #f0f0f0; /* Light background for input */
    border: 1px solid #ced4da;
}

.header-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #6c757d;
}

.header-value {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Consistent button styles */
.zone-button,
.table-button {
    display: block;
    width: 91% !important;
    min-height: 60px;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.2rem;
    text-align: center;
    white-space: nowrap;
    border-radius: 0.5rem;
}

.table-status-0 {
    background-color: #E9E0B7 !important;
    border-color: #E9E0B7 !important;
    color: #C05A00 !important;
}

.table-status-1 {
    background-color: #E6CCCC !important;
    border-color: #E6CCCC !important;
    color: #E02727 !important;
}

.table-status-2 {
    background-color: #E9E0B7 !important;
    border-color: #E9E0B7 !important;
    color: #C05A00 !important;
}

.table-status-3 {
    background-color: #E9E0B7 !important;
    border-color: #E9E0B7 !important;
    color: #C05A00 !important;
}

.table-time-label {
    display: block;
    width: 100%;
    min-height: 1.2rem;
    margin-top: 0.3rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1E3559;
}

.table-card {
    position: relative;
}

.table-card .table-button {
    min-height: 74px;
    padding-bottom: 1.9rem;
}

.table-card .table-time-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.45rem;
    margin-top: 0;
    font-size: 0.8rem;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

@media (min-width: 480px) {
    .zone-button,
    .table-button {
        width: 100% !important;
    }

}

@media (min-width: 768px) {
    .zone-button,
    .table-button {
        font-size: 1.05rem;
    }
}

@media (min-width: 1200px) {
    .zone-button,
    .table-button {
        font-size: 1.1rem;
    }
}

.food-button {
    width: 100% !important;
    min-height: 55px;
    font-size: 0.9rem;
    line-height: 1.2;
    padding: 5px;
    border-radius: 8px;
    white-space: normal;
    color: black;
    text-wrap: wrap;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    background-clip: padding-box;
}


.btn.text-center {
    text-align: center !important;
}

.btn.fw-bold {
    font-weight: 600;
}

.btn-sm-text {
    font-size: 0.8rem;
}

.category-scroll-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 6px;
    max-height: 55vh; /* or set fixed height if you prefer */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0px; /* small spacing for scrollbar */
}

.order-item-scroll-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive columns */
    gap: 6px;
    max-height: 55vh; /* or set fixed height if you prefer */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px; /* small spacing for scrollbar */
}

.category-item {
    display: flex;
}

.item-scroll-wrapper {
    max-height: 55vh; /* Adjust height as needed */
    overflow-y: auto; /* Enable vertical scroll */
    overflow-x: hidden;
    padding-right: 5px; /* For scrollbar space */
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.custom-card {
    width: 200px;
    height: 150px;
    background-color: orange;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: 10px;
}

.sidebar {
    min-height: 70vh;
    overflow-x: auto;
}


.text_align_Contact td {
    text-align: left;
    vertical-align: top;
    padding-left: 10px;
    background-color: black !important;
    color: white !important;
}

#pnHeader {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 0.5rem;
}

.card_custom_style {
    width: 125px;
    height: 125px;
    background-color: #bdb76b;
    border: 2px solid black;
    border-radius: 5px;
}
