.admin-settings {
    margin: 20px;
}

.admin-settings label {
    display: block;
    margin-bottom: 5px;
}

.admin-settings input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkout-option {
    margin: 20px 0;
}

.checkout-option label {
    font-weight: bold;
}

.boarding-pass-designs {
    margin-top: 10px;
}

.boarding-pass-designs select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.bbp-design-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.bbp-design-options label {
    text-align: center;
    cursor: pointer;
}

.bbp-design-options img {
    display: block;
    margin: 0 auto 5px;
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.bbp-design-options img:hover {
    border-color: #007cba;
}

.bbp-design-options input[type="radio"] {
    margin-top: 5px;
}

#bbp_boarding_pass_option {
    padding: 10px;
    background: #ffecb3;
    border: 1px solid #ffe082;
    border-radius: 20px;
}

#bbp_boarding_pass_option p {
    margin-bottom: 0;
}