.voucher-create-container {
    max-width: 900px; /* Lebar lebih besar */
    margin: 0 auto;
}

.voucher-create-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voucher-create-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.voucher-create-card-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.voucher-create-btn {
    text-decoration: none;
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
}

.voucher-create-btn-return {
    background-color: #e9e9e9;
    color: #555;
}

.voucher-create-btn-return:hover {
    background-color: #e74c3c;
    color: white;
}

.voucher-create-btn-success {
    background-color: #218838;
    color: white;
}

.voucher-create-btn-success:hover {
    background-color: #1e7e34;
    transform: scale(1.05);
}

.voucher-create-form-group {
    margin-bottom: 20px;
}

.voucher-create-form-label {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.voucher-create-form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.voucher-create-form-control:focus {
    border-color: #28a745;
    outline: none;
}

.voucher-create-form-text {
    font-size: 0.875rem;
    color: #888;
    margin-top: 5px;
}

.voucher-create-alert-danger {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 5px;
}

.voucher-create-btn-success {
    background-color: #218838;
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    border: none;
}

.voucher-create-btn-success:hover {
    background-color: #1e7e34;
    transform: scale(1.05);
}
