/* Golden City Voucher Styles */
#gc-voucher-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

#gc-voucher-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#gc-voucher-form input, #gc-voucher-form textarea, #gc-voucher-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
}

#color-options {
    display: flex;
    gap: 10px;
}

.color-box {
    display: inline-block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 2px solid transparent;
}

input[type="radio"] {
    display: none; /* Hide the default radio button */
}

input[type="radio"]:checked + .color-box {
    border: 2px solid #000; /* Highlight the selected color */
}

/* Style the preview */
#voucher-preview {
    width: 800px;
    height: 450px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    position: relative;
    margin: 20px auto;
}

#preview_company_name {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

#preview_offer_text {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

#preview_logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 150px;
    height: auto;
}

#preview_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: yellow;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}
