.pickup-wrapper {
    max-width: 500px;
    margin: auto;
    padding: 15px;
    font-family: sans-serif;
}

#order-search {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    margin-bottom: 10px;
}

#order-results {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

#order-results li {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    background: #fff;
}

#order-results li:active {
    background: #f0f0f0;
}

canvas#signature-pad {
    width: 100%;
    height: 200px;
    border: 2px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

.sig-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

button {
    padding: 14px;
    font-size: 16px;
}

button[type=submit] {
    width: 100%;
    font-size: 20px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
}

button[type=submit]:active {
    background: #218838;
}