/* ---------- Body & General ---------- */
body {
    font-family: Arial, sans-serif;
    background-color: #e6e6e6;
    margin: 10px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ---------- Inputs & Textarea ---------- */
input[type="text"], input[type="number"], textarea {
    width: 90%;
    padding: 15px;
    font-size: 1.8rem;
    margin: 10px 0;
    box-sizing: border-box;
    text-align: center;
}

/* ---------- Price Scroll Wheel ---------- */
#price-wheel {
    height: 60px;
    width: 180px;
    overflow-y: scroll;
    margin: 20px auto;
    border-radius: 15px;
    border: 2px solid #163a40;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
    background-color: #fff;
}

.price-item {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    scroll-snap-align: start;
    cursor: pointer;
    user-select: none;
}

#price-wheel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border-top: 2px solid #ff6f00;
    border-bottom: 2px solid #ff6f00;
    pointer-events: none;
}

/* ---------- Sticker Buttons ---------- */
.sticker-btn {
    padding: 0;
    margin: 5px;
    border: 2px solid #163a40;
    border-radius: 12px;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.2s;
    position: relative;
}

.sticker-btn.selected {
    border-color: #4caf50;
    background-color: #4caf50;
}

.sticker-btn img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Rectangular stickers (white and clearance) */
.sticker-btn img[src*="white.png"],
.sticker-btn img[src*="clearance.png"] {
    width: 140px;  /* wider */
    height: 60px;
    object-fit: contain;
    white-space: nowrap;  /* prevent wrapping */
    text-align: center;
}

/* Slightly wider green/red stickers */
.sticker-btn img[src*="green26.png"],
.sticker-btn img[src*="red2for12.png"] {
    width: 100px;
    height: 80px;
}

/* Text overlay on stickers (price) */
.sticker-btn div {
    position: absolute;
    top: 65%;             /* lowered */
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: black;
    font-size: 20px;      /* larger */
    text-shadow: 1px 1px 2px white;
}

/* Locked elements */
.locked {
    pointer-events: none;
    opacity: 0.5;
}

/* ---------- Buttons ---------- */
button {
    padding: 15px 30px;
    font-size: 1.8rem;
    margin: 10px 5px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
}

#submit-btn {
    background-color: #1c3b40;
    color: white;
}

#start-btn, #finish-btn, #edit-btn, #edit-price-btn {
    background-color: #163a40;
    color: white;
}

/* Disabled buttons */
button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ---------- Summary ---------- */
#summary-section p {
    font-size: 1.6rem;
    margin: 5px 0;
}

/* ---------- Dropdown Menu ---------- */
.menu-dropdown {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

#menu-toggle {
    background-color: #163a40;
    color: white;
    font-size: 1.5rem;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
}

.menu-content {
    display: none;
    flex-direction: column;
    margin-top: 5px;
}

.menu-content button {
    background-color: #1c3b40;
    color: white;
    font-size: 1.3rem;
    margin: 3px 0;
    border-radius: 6px;
    padding: 8px;
    border: none;
    cursor: pointer;
}

.menu-content button:hover {
    background-color: #4caf50;
}