/* Main Queue Status Button */
.osd-queue-status {
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: black;
    cursor: pointer;
    text-decoration: none;
}

/* Popup Container */
.osd-popup {
    position: fixed;
    top: 25vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

/* Popup Header with Close Button */
.osd-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.osd-popup-close {
    cursor: pointer;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Popup Content Container */
.osd-popup-content {
    display: flex;
    justify-content: space-between;
    height: 60vh;
    overflow-y: auto;
    margin-top: 10px;
}

/* Left and Right Sections */
.osd-section-left, .osd-section-right {
    width: 50%;
    padding: 15px;
}

.osd-section-left h3, .osd-section-right h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
}

/* Order Number Styling */
.osd-order-number {
    text-align: center;
    margin: 8px 0;
    font-size: 16px;
    color: #444;
}

.osd-user-order {
    color: blue;
    font-weight: bold;
}

/* Popup Footer Close Button */
.osd-popup-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.osd-popup-close-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
