body {
    font-family: Arial, sans-serif;
    background: #fff7ed;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #e11d48;
}

.large-gap {
  word-spacing: 10px; /* Adjust value as needed */
}

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

/* ORDER CARD */
.order {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.2s;
}

.order:hover {
    transform: scale(1.02);
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.order-image {
    display: block;
    max-width: 100%;
    max-height: 350px;

    margin-top: 10px;

    border-radius: 12px;
    border: 1px solid #ddd;

    object-fit: contain;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    cursor: pointer;

    transition: 0.25s ease;
}
.order-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 400px;
    max-width: 75vw;
    max-height: 85vh;
    overflow-y: scroll;
}

button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#markDoneBtn {
    background: #22c55e;
    color: white;
}

#closeModal {
    background: #ef4444;
    color: white;
    margin-left: 10px;
}