/* Veřejné styly placeholder */
.asm-voucher {
    padding: 12px;
    border: 1px solid #ddd;
    background: #fffdfa;
    display: inline-block;
}

.asm-voucher-form {
    border: 1px solid #e5e5e5;
    padding: 16px;
    background: #fff;
}

.asm-voucher-form__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.asm-voucher-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.asm-voucher-field input[type="text"],
.asm-voucher-field input[type="email"],
.asm-voucher-field textarea,
.asm-voucher-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}

.asm-voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.asm-voucher-background-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.asm-voucher-background-option {
    border: 2px solid transparent;
    padding: 4px;
    cursor: pointer;
}

.asm-voucher-background-option input {
    display: block;
    margin-bottom: 4px;
}

.asm-voucher-alert {
    padding: 12px;
    border: 1px solid;
    margin-bottom: 12px;
}

.asm-voucher-alert.error {
    border-color: #dc3232;
    background: #ffeaea;
}

.asm-voucher-alert.success {
    border-color: #46b450;
    background: #e7f7ea;
}

.asm-voucher-actions {
    text-align: right;
}
