/* Summary of Classes:
.kqs-container - Main container for the button and popup.
.kqs-button - Styles the Queue Status button.
.kqs-popup-overlay - Background overlay for the popup.
.kqs-popup-content - Popup content container.
.kqs-close-btn - Close button inside the popup.
.kqs-order-lists - Flex container for Processing and Completed order lists.
.kqs-order-column - Column for each order list.
.kqs-heading - Heading for order categories (Processing/Completed).
.kqs-highlight - Highlights orders related to the logged-in user.
*/

/* General styling */
.kqs-container {
    text-align: center;
    margin-top: 20px;
}

.kqs-button {
    width: 100vw;
    height: 10vh;
    background-color: var(--colour04, #ffa500);
    color: var(--colour01, #FFFFFF);
    font-family: "Fjalla One", sans-serif;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin: 20px 0;
}

.kqs-button:hover {
    background-color: #ff8c00;
}

/* Popup styling */
.kqs-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow: auto;
}

.kqs-popup-content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--colour01, #FFFFFF);
    padding: 20px;
    width: 80vw;
    height: 80dvh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.kqs-close-btn {
    background: none;
    border: none;
    color: var(--colour02, #000000);
    font-size: 1.5rem;
    font-weight: bold;
    float: right;
    cursor: pointer;
}

.kqs-order-lists {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    font-family: "Cantarell", sans-serif;
}

.kqs-order-column {
    width: 45%;
}

.kqs-heading {
    font-family: "Fjalla One", sans-serif;
    font-size: 1.5rem;
    color: var(--colour02, #000000);
    margin-bottom: 10px;
    text-align: center;
}

.kqs-order-column ul {
    list-style: none;
    padding: 0;
}

.kqs-order-column li {
    margin: 5px 0;
    padding: 10px;
    background-color: var(--colour03, #808080);
    color: var(--colour01, #FFFFFF);
    border-radius: 5px;
    text-align: center;
}

.kqs-highlight {
    background-color: var(--colour04, #ffa500) !important;
    font-weight: bold;
}
