.bulk-purchase-container {
    width: 750px;
    max-width: 100%;
    margin-top: 20px;
    text-align: center;
    line-height: 1.8;
}

.bulk-purchase-info-button {
    display: block;
    width: 100%;
    background-color: white;
    color: black;
    border: 1px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    line-height: 1.6;
    text-align: center;
}

.bulk-purchase-info-button:hover, .bulk-purchase-info-button:focus {
    background-color: whitesmoke;
    border: 1px solid gray;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    color: black;
}

.bulk-purchase-info-button div {
    font-size: 13px;
    font-style: italic;
    color: rgb(70, 70, 70);
}

.bulk-purchase-info-badge {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 5px;
    background-color: green;
    color: white;
    line-height: 1.3;
    font-size: 13px;
    font-weight: 600;
}

.bulk-purchase-info-wrapper {
    display: none;
    margin-top: 20px;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 15px;
}

/* the labels wrap their controls for implicit association, so they need to stack like blocks */
.bulk-purchase-info-wrapper label {
    display: block;
}

.bulk-purchase-info-wrapper .bulk-purchase-plan,
.bulk-purchase-info-wrapper .bulk-purchase-seats {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: black;
    height: unset;
    max-width: 100%;
}

.bulk-purchase-info-wrapper .bulk-purchase-plan {
    width: 500px;
}

.bulk-purchase-info-wrapper .bulk-purchase-seats {
    width: 200px;
}

.bulk-purchase-tiers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.6;
}

.bulk-purchase-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 500px;
    max-width: 100%;
    margin: 0 auto 20px auto;
    padding: 15px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: lightcyan;
}

.bulk-purchase-total {
    color: red;
    font-size: 20px;
}

.bulk-purchase-per-code {
    color: rgb(100, 100, 100);
    font-size: 13px;
}

.bulk-purchase-saving {
    padding: 3px 10px;
    border-radius: 5px;
    background-color: green;
    color: white;
    line-height: 1.3;
    font-size: 13px;
    font-weight: 600;
}

.bulk-purchase-notice {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.5;
    color: rgb(70, 70, 70);
}
